We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c88fb commit f1163a8Copy full SHA for f1163a8
1 file changed
.github/workflows/ci.yml
@@ -24,12 +24,24 @@ on:
24
- cron: "0 12 * * 0"
25
26
jobs:
27
- checks:
28
- uses: libhal/ci/.github/workflows/library.yml@3.0.2
+ ci:
+ uses: libhal/ci/.github/workflows/library.yml@4.0.0
29
with:
30
library: libhal-soft
31
coverage: true
32
secrets: inherit
33
+
34
devices:
- uses: libhal/ci/.github/workflows/deploy.yml@3.0.2
35
+ uses: libhal/ci/.github/workflows/deploy.yml@4.0.0
36
37
38
+ release:
39
+ needs: [ci, devices]
40
+ if: startsWith(github.ref, 'refs/tags/')
41
+ runs-on: ubuntu-22.04
42
+ steps:
43
+ - name: Release
44
+ uses: softprops/action-gh-release@v1
45
46
+ with:
47
+ generate_release_notes: true
0 commit comments