Skip to content

Fucked up the actions #4 #5

Fucked up the actions #4

Fucked up the actions #4 #5

name: Deploy the application to the Sign
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: "deploy"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: thumbv6m-none-eabi
- run: cargo build --release
working-directory: application
- uses: softprops/action-gh-release@v2
with:
draft: false
prerelease: false
make_latest: true
tag: im_testing_stuff_pls_ignore
token: ${{ secrets.GITHUB_TOKEN }}
files: target/thumbv6m-none-eabi/release/application