this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

more actions fixes

+7 -2
+7 -2
.forgejo/workflows/rust.yaml
··· 15 15 - name: Setup toolchian 16 16 uses: https://github.com/dtolnay/rust-toolchain@stable 17 17 - name: Build 18 - run: cargo build --release --verbose 18 + run: | 19 + cargo build --release 20 + cp target/release/iss_locator iss_locator 21 + chmod +x iss_locator 22 + xz --keep -9 iss_locator 23 + shasum -a 256 iss_locator > iss_locator.sha256 24 + shasum -a 256 iss_locator.xz > iss_locator.xz.sha256 19 25 - name: Upload release 20 26 uses: actions/forgejo-release@v1 21 27 with: 22 28 direction: upload 23 29 url: https://git.technoduck.me 24 - release-dir: release 25 30 token: ${{secrets.app_token}} 26 31 verbose: true 27 32