Skip to content

Commit

Permalink
Fix container name
Browse files Browse the repository at this point in the history
  • Loading branch information
dns13 committed Mar 6, 2024
1 parent 0d1b114 commit 637e254
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Build and publish a Docker image for ${{ github.repository }}
uses: macbre/push-to-ghcr@master
with:
image_name: ${{ github.repository }} # it will be lowercased internally
image_name: bestsens/musl-build-image # it will be lowercased internally
github_token: ${{ secrets.GITHUB_TOKEN }}
extract-toolchain:
runs-on: ubuntu-latest
Expand All @@ -19,8 +19,8 @@ jobs:
uses: actions/checkout@v4
- name: Extract toolchain
run: |
docker pull ghcr.io/${{ github.repository }}/latest
docker run --rm -v $(pwd):/data ghcr.io/${{ github.repository }}/latest \
docker pull ghcr.io/bestsens/musl-build-image/latest
docker run --rm -v $(pwd):/data ghcr.io/bestsens/musl-build-image/latest \
/bin/tar -czvf /data/arm-bemos-linux-musleabihf.tar.gz /opt/x-tools/arm-bemos-linux-musleabihf/
- name: Archive toolchain
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 637e254

Please sign in to comment.