We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91078b2 commit 8a3a40fCopy full SHA for 8a3a40f
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,27 @@
1
+name: Build and Version
2
+
3
+permissions:
4
+ contents: read # Default to secure
5
6
+on:
7
+ pull_request:
8
+ branches:
9
+ - master
10
+ paths:
11
+ - 'Src/**'
12
+ - 'Localization/**'
13
+ - '.github/workflows/build.yml'
14
15
+ workflow_dispatch: # allows manual trigger for main/master
16
17
+jobs:
18
+ build:
19
+ runs-on: windows-2022
20
+ steps:
21
+ - name: Download artifacts
22
+ uses: actions/download-artifact@v8
23
+ with:
24
+ artifact-ids: 7025990898
25
+ run-id: 25939791149
26
+ - name: Display structure of downloaded files
27
+ run: ls -R
0 commit comments