This commit is contained in:
iff 2023-08-02 01:45:52 +02:00
parent 80b1fb51ee
commit 4206539830

32
.github/workflows/build.yaml vendored Normal file
View file

@ -0,0 +1,32 @@
name: Build
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: build
run: |
cargo build --release
- name: Zipping files
run: |
7z a ./pay_respects-ubuntu-latest.zip ./target/release/pay_respects
- name: Uploading to release
uses: ncipollo/release-action@v1
with:
artifacts: pay_respects-ubuntu-latest.zip
allowUpdates: true
makeLatest: true