Skip to content

Commit db91c0c

Browse files
Add building script
1 parent 017150d commit db91c0c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/Build.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)