Migrate release/0.3 to gha from repo #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name : Publish Webhook Images | |
on: | |
push: | |
pull_request: | |
env: | |
REGISTRY: docker.io | |
REPO : rancher | |
jobs: | |
ci : | |
uses: ./.github/workflows/ci.yaml | |
permissions: | |
contents: read | |
push: | |
needs : [ | |
ci | |
] | |
permissions: | |
contents : read | |
id-token: write | |
name : Build and push webhook images | |
runs-on : ubuntu-latest | |
steps: | |
- name : "Read vault secrets" | |
uses : rancher-eio/read-vault-secrets@main | |
with: | |
secrets: | | |
secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials username | DOCKER_USERNAME ; | |
secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials password | DOCKER_PASSWORD | |
- name : Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ env.DOCKER_PASSWORD }} | |
# setup tag name | |
- if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
run: | | |
echo TAG_NAME=$(echo $GITHUB_REF | sed -e "s|refs/tags/||") >> $GITHUB_ENV | |
- name: Build and push the webhook image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./package/Dockerfile | |
push: true | |
tags: ${{ env.REGISTRY }}/${{ env.REPO }}/webhook:${{ env.TAG_NAME }} | |
platforms: linux/amd64,linux/arm64 |