Skip to content

Commit 718976b

Browse files
authored
fix galaxy-release action (#29)
1 parent 5353950 commit 718976b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/galaxy.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2.3.4
13+
- uses: actions/checkout@v2
1414

1515
# deploy the collection first, because if it fails, we don't want
1616
# to update the galaxy.yml
@@ -20,6 +20,11 @@ jobs:
2020
api_key: ${{ secrets.GALAXY_API_KEY }}
2121
galaxy_version: ${{ github.event.release.tag_name }}
2222

23+
# checkout master instead of the release-tag so we can push the galaxy.yml
24+
- uses: actions/checkout@v2
25+
with:
26+
ref: master
27+
2328
- name: update galaxy.yml with new version
2429
uses: microsoft/variable-substitution@v1
2530
with:

0 commit comments

Comments
 (0)