Skip to content

Commit

Permalink
Fix version checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverguenther committed Dec 13, 2023
1 parent 1471070 commit 00a1401
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ jobs:
bim_support: false
target: all-in-one
steps:
- name: Checkout
- name: Checkout current release
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v3
- name: Checkout specific version
if: ${{ github.event_name != 'push' }}
with:
ref: ref/tags/${{ inputs.version }}
uses: actions/checkout@v3
- name: Prepare docker files
run: |
Expand Down

0 comments on commit 00a1401

Please sign in to comment.