tag+action test
This commit is contained in:
parent
5dc5a58823
commit
f96d5f6ff3
1 changed files with 20 additions and 1 deletions
|
@ -1,6 +1,25 @@
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
tags: 'v*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- run: echo All Good here
|
- run: echo All Good here
|
||||||
|
release:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --release --verbose
|
||||||
|
- name: Upload release
|
||||||
|
uses: actions/forgejo-release@v1
|
||||||
|
with:
|
||||||
|
direction: Upload
|
||||||
|
url: https://git.technoduck.me
|
||||||
|
release-dir: target/release
|
||||||
|
token: ${{secrets.app_token}}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue