All checks were successful
Push / release-docker-helm (push) Successful in 3m33s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [docker/build-push-action](https://github.com/docker/build-push-action) | action | major | `v6` → `v7` | --- ### Release Notes <details> <summary>docker/build-push-action (docker/build-push-action)</summary> ### [`v7`](https://github.com/docker/build-push-action/compare/v6...v7) [Compare Source](https://github.com/docker/build-push-action/compare/v6...v7) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41Ni4xIiwidXBkYXRlZEluVmVyIjoiNDMuNTYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #19 Reviewed-by: Keli Grubb <keligrubb324@gmail.com> Co-authored-by: Renovate Bot <renovate@keligrubb.com> Co-committed-by: Renovate Bot <renovate@keligrubb.com>
64 lines
1.9 KiB
YAML
64 lines
1.9 KiB
YAML
name: Push
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
release-docker-helm:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
token: ${{ secrets.KESTRELOS_REPO_TOKEN }}
|
|
|
|
- name: Release (bump, tag, push, create release)
|
|
env:
|
|
CI_REPO_OWNER: ${{ github.actor }}
|
|
CI_REPO_NAME: ${{ github.event.repository.name }}
|
|
CI_FORGE_URL: ${{ github.server_url }}
|
|
CI_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
|
|
GITEA_REPO_TOKEN: ${{ secrets.KESTRELOS_REPO_TOKEN }}
|
|
run: |
|
|
sudo apt-get update -qq && sudo apt-get install -y -qq git wget
|
|
./scripts/release.sh
|
|
|
|
- name: Log in to container registry
|
|
uses: docker/login-action@v4
|
|
with:
|
|
registry: git.keligrubb.com
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.KESTRELOS_REPO_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v4
|
|
|
|
- name: Build Docker image
|
|
uses: docker/build-push-action@v7
|
|
with:
|
|
context: .
|
|
load: true
|
|
tags: kestrelos:built
|
|
|
|
- name: Push Docker image (all tags from .tags)
|
|
run: |
|
|
REGISTRY="git.keligrubb.com"
|
|
IMAGE="$REGISTRY/${{ github.repository }}"
|
|
while read -r tag; do
|
|
docker tag kestrelos:built "$IMAGE:$tag"
|
|
docker push "$IMAGE:$tag"
|
|
done < .tags
|
|
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v4
|
|
|
|
- name: Package and push Helm chart
|
|
env:
|
|
GITEA_REPO_TOKEN: ${{ secrets.KESTRELOS_REPO_TOKEN }}
|
|
run: |
|
|
helm package helm/kestrelos
|
|
for f in kestrelos-*.tgz; do
|
|
curl -sf -u "${{ github.actor }}:$GITEA_REPO_TOKEN" -X POST --upload-file "$f" \
|
|
"${{ github.server_url }}/api/packages/${{ github.actor }}/helm/api/charts"
|
|
done
|