Skip to content

Merge pull request #10 from loveholidays/upgrade-goreleaser-to-v2 #5

Merge pull request #10 from loveholidays/upgrade-goreleaser-to-v2

Merge pull request #10 from loveholidays/upgrade-goreleaser-to-v2 #5

Workflow file for this run

name: docker
on:
push:
tags:
- '*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: ++ Export global vars for current job
id: current-job
run: |
if [ ${{github.ref_name}} = "main" ]; then
echo "::set-output name=VERSION::latest"
else
echo "::set-output name=VERSION::${{ github.ref_name }}"
fi
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: "{{defaultContext}}"
push: true
tags: ghcr.io/loveholidays/excalidraw-decrypt:${{ steps.current-job.outputs.VERSION }}