Skip to content

Commit

Permalink
Fix condition when setting angr version
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed May 1, 2024
1 parent 5693464 commit b5e3267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
ANGR_VERSION=$(python -c "import feedparser; print(feedparser.parse('https://pypi.org/rss/project/angr/releases.xml').entries[0].title)")
echo "ANGR_VERSION=$ANGR_VERSION" >> $GITHUB_ENV
- name: Set angr version
if: ${{ github.event_name == 'workflow_dispatch' || github.event.inputs.version != '' }}
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version != '' }}
run: echo "ANGR_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
- name: Build angr docker image
run: |
Expand Down

0 comments on commit b5e3267

Please sign in to comment.