Skip to content

fix: repo link

fix: repo link #31

Workflow file for this run

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