Skip to content

Commit

Permalink
Use | instead of > in workflow yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Apr 30, 2024
1 parent f438d80 commit bbb4c29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
- name: Get latest angr version
run: >
run: |
pip install --user feedparser
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: Build angr docker image
run: >
run: |
docker build --build-arg ANGR_VERSION=$ANGR_VERSION -t angr/angr:$ANGR_VERSION .
docker tag angr/angr:$ANGR_VERSION angr/angr:latest
- name: Login to docker hub
Expand Down

0 comments on commit bbb4c29

Please sign in to comment.