Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mitch-z committed Jun 6, 2024
1 parent 4cb5713 commit acca0f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
tags:
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
- "v[0-9]+.[0-9]+.[0-9]+-rc*" # Push events to matching v*, i.e. v1.0-rc1, v20.15.10-rc5

jobs:
setup-build-publish:
name: Setup, Build and Publish
Expand All @@ -18,7 +18,7 @@ jobs:
run: echo "VERSION=${GITHUB_REF_NAME}" >> $GITHUB_ENV
- name: Build and Push Docker Image
run: |
echo "Version: ${{ github.ref == 'refs/heads/master' && github.sha || env.VERSION }}"
echo "Version: ${{ env.VERSION }}"
deploy:
name: Deploy
Expand All @@ -28,4 +28,4 @@ jobs:
steps:
- name: Deploy
run: |
echo "Version: ${{ github.ref == 'refs/heads/master' && github.sha || env.VERSION }}"
echo "Version: ${{ env.VERSION }}"

0 comments on commit acca0f5

Please sign in to comment.