-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 876 Bytes
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: build
on:
push:
tags:
- '*'
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings
jobs:
release:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: extractions/setup-crate@v1
with:
owner: rossmacarthur
name: powerpack
- name: Setup Rust
run: |
rustup set profile minimal
rustup toolchain install stable
rustup override set stable
- name: Archive
id: archive
run: |
archive=wcag.alfredworkflow
powerpack package
mv target/workflow/wcag.alfredworkflow "$archive"
echo "path=$archive" >> $GITHUB_OUTPUT
- uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: ${{ steps.archive.outputs.path }}