Skip to content

Commit

Permalink
troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
sscheib committed Mar 17, 2024
1 parent c748343 commit ece66a8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,21 @@ jobs:
steps:
- name: 'checkout'
uses: 'actions/checkout@v4'
if: "${{ github.ref == 'refs/heads/main' }}"
if: >-
github.ref == 'refs/heads/main'
- name: 'galaxy'
uses: 'robertdebock/[email protected]'
if: "${{ github.ref == 'refs/heads/main' }}"
if: >-
github.ref == 'refs/heads/main'
with:
galaxy_api_key: '${{ secrets.galaxy_api_key }}'
git_branch: 'main'

- name: 'Create a new release on GitHub'
uses: 'softprops/action-gh-release@v2'
if: "${{ github.ref == 'refs/heads/main' }}"
if: >-
github.ref == 'refs/heads/main'
with:
draft: false
prerelease: false
Expand Down

0 comments on commit ece66a8

Please sign in to comment.