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: |