Skip to content

Commit 3eef293

Browse files
committed
+ runner O64
1 parent dd25b90 commit 3eef293

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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 }}

0 commit comments

Comments
 (0)