We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 017150d commit db91c0cCopy full SHA for db91c0c
.github/workflows/Build.yaml
@@ -0,0 +1,30 @@
1
+name: Build Project
2
+
3
+# Workflow will trigger on any push to the master/main branch
4
+on:
5
+ push:
6
+ branches:
7
+ - master
8
+ - main
9
10
+jobs:
11
+ Build:
12
+ # Building server
13
+ runs-on: windows-2022
14
+ # Commands to complete task
15
+ steps:
16
17
+ # Cloning all repository
18
+ - name: Get Sources
19
+ uses: actions/checkout@v4
20
21
+ # - name: Compile Project
22
+ # shell: cmd
23
+ # run: commands
24
25
+ # Upload artifact to the GitHub
26
+ - name: Upload Artifact
27
+ uses: actions/upload-artifact@v4
28
+ with:
29
+ name: RA3World-${{github.sha}}
30
+ path: Source/**
0 commit comments