We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed916c2 commit aec42b5Copy full SHA for aec42b5
.github/workflows/release.yaml
@@ -6,9 +6,6 @@ permissions:
6
on:
7
workflow_dispatch:
8
9
-env:
10
- ZIP_FILE: sentinel.zip
11
-
12
jobs:
13
release:
14
runs-on: ubuntu-latest
@@ -30,10 +27,13 @@ jobs:
30
27
31
28
- uses: Swatinem/rust-cache@v2
32
29
+ - name: Build
+ run: cargo lambda build --output-format zip
+
33
- name: Release
34
env:
35
GH_TOKEN: ${{ github.token }}
36
run: |
37
gh release create "$(date +'%Y.%m.%d.%H.%M.%S')" \
38
- '${{ env.ZIP_FILE }}' \
+ target/lambda/sentinel/bootstrap.zip \
39
--latest
0 commit comments