Skip to content

Commit

Permalink
Update toolchain1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vipshmily authored Aug 20, 2024
1 parent 48e16b6 commit c35e553
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/toolchain1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build Padavan toolchain
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main
- name: Prepare environment
run: |
sudo apt update
Expand All @@ -36,14 +36,14 @@ jobs:
sed -i '/cp -f/d' Makefile
make toolchain/build
cd $toolchain_dir
tar cJf ../mipsel-linux-uclibc-gcc10.tar.xz *
- uses: actions/upload-artifact@v3
tar cJf ../mipsel-linux-uclibc.tar.xz *
- uses: actions/upload-artifact@main
with:
name: toolchain
path: ${{ env.build_dir }}/mipsel-linux-uclibc-gcc10.tar.xz
- uses: svenstaro/upload-release-action@2.3.0
path: ${{ env.build_dir }}/mipsel-linux-uclibc.tar.xz
- uses: svenstaro/upload-release-action@master
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.build_dir }}/mipsel-linux-uclibc-gcc10.tar.xz
file: ${{ env.build_dir }}/mipsel-linux-uclibc.tar.xz
tag: toolchain
overwrite: true

0 comments on commit c35e553

Please sign in to comment.