Merge pull request #8 from mqasimsarfraz/dependabot/go_modules/golang… #33
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: "Imagesync CI" | |
on: | |
push: | |
branches: [ master ] | |
tags: [ v* ] | |
permissions: read-all | |
jobs: | |
build-push-image: | |
name: Build/Push imagesync image | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: "ghcr.io" | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Determine tag for container image | |
id: image-tag | |
run: | | |
if [[ "${{ github.ref_name }}" == "master" ]]; then | |
echo "::set-output name=value::latest" | |
else | |
echo "::set-output name=value::${{ github.ref_name }}" | |
fi | |
- name: Build and Push | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
tags: | | |
ghcr.io/mqasimsarfraz/imagesync:${{ steps.image-tag.outputs.value }} | |
smqasims/imagesync:${{ steps.image-tag.outputs.value }} | |
build-args: | | |
IMAGESYNC_VERSION=${{ github.ref_name }} | |