File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build-self-hosted
2
+ on :
3
+ - workflow_dispatch
4
+
5
+ permissions :
6
+ id-token : write
7
+ attestations : write
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : [self-hosted, Windows, O64]
12
+ steps :
13
+ - name : " Checkout"
14
+ uses : actions/checkout@v4
15
+ with :
16
+ token : ${{ secrets.ACCESS_TOKEN }}
17
+ - name : " Build Access file (accdb/accde)"
18
+ id : build_access_file
19
+ uses : AccessCodeLib/msaccess-vcs-build@main
20
+ with :
21
+ source-dir : " ./source"
22
+ timeout-minutes : 10
23
+ - name : " Upload Build Artifact"
24
+ uses : actions/upload-artifact@v4
25
+ id : " upload"
26
+ with :
27
+ name : " Binary files"
28
+ path : " ./bin/*"
29
+ if-no-files-found : warn
30
+ - name : " Attestation"
31
+ uses : actions/attest-build-provenance@v2
32
+ with :
33
+ subject-name : " Binary files"
34
+ subject-digest : sha256:${{ steps.upload.outputs.artifact-digest }}
You can’t perform that action at this time.
0 commit comments