-
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (25 loc) · 606 Bytes
/
Build.yaml
File metadata and controls
30 lines (25 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Build Project
# Workflow will trigger on any push to the master/main branch
on:
push:
branches:
- master
- main
jobs:
Build:
# Building server
runs-on: windows-2022
# Commands to complete task
steps:
# Cloning all repository
- name: Get Sources
uses: actions/checkout@v4
# - name: Compile Project
# shell: cmd
# run: commands
# Upload artifact to the GitHub
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: RA3World-${{github.sha}}
path: Source/**