Skip to content

Commit

Permalink
automatic build release first attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
mainak55512 committed Oct 14, 2024
1 parent 916f474 commit 3c8e833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- name: Build for Linux
# uses: actions/checkout@v4
run: cargo build --release; rustup target add x86_64-pc-windows-gnu; cargo build --release --target x86_64-pc-windows-gnu; tar cvfj rjq_linux_amd64.tar.gz target/release/rjq; tar cvfj rjq_win_x86_64.zip target/x86_64-pc-windows-gnu/release/rjq.exe; rm -rf target/
run: cargo build --release; apt install gcc-mingw-w64; rustup target add x86_64-pc-windows-gnu; cargo build --release --target x86_64-pc-windows-gnu; tar cvfj rjq_linux_amd64.tar.gz target/release/rjq; tar cvfj rjq_win_x86_64.zip target/x86_64-pc-windows-gnu/release/rjq.exe; rm -rf target/
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit 3c8e833

Please sign in to comment.