From b5e32670da68b8cefd713ede5133744fa4a2a67d Mon Sep 17 00:00:00 2001 From: Kevin Phoenix Date: Tue, 30 Apr 2024 18:32:30 -0700 Subject: [PATCH] Fix condition when setting angr version --- .github/workflows/build-container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 20dc40d..a288322 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -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: |