This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
Edit contributors table to be accurate to the discord (#79) #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Binary (via GatoBot) | |
on: | |
workflow_dispatch: | |
push: | |
branches: main | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
target: x86_64-unknown-linux-gnu | |
override: true | |
components: rustfmt, clippy | |
- name: Add nightly-x86_64 | |
run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu | |
- name: Install deps | |
run: ./scripts/configure.sh | |
#- name: Build | |
# run: cargo build --verbose --release | |
- name: Compress Diskimg | |
run: ./scripts/compress-diskimg.sh | |
#- name: Generate SHA256 sum | |
# run: sha256sum target/x86_64-arch/debug/bootimage-popcorn.bin.zst > sha256sum.txt | |
- name: Send to Discord | |
run: | | |
curl \ | |
-F "payload_json={\"content\": \"New build of popcorn! Branch: $GITHUB_REF, Timestamp: <t:$(date +%s)>\n\`\`\`$(sha256sum target/x86_64-arch/debug/bootimage-popcorn.bin.zst)\`\`\`\"}" \ | |
-F "file1=@target/x86_64-arch/debug/bootimage-popcorn.bin.zst" \ | |
${{ secrets.WEBHOOK_URL }} |