This repository was archived by the owner on Jan 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +47
-21
lines changed Expand file tree Collapse file tree 4 files changed +47
-21
lines changed Original file line number Diff line number Diff line change @@ -11,23 +11,26 @@ jobs:
11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
14
- # Create a zip from what's in this repo
14
+ - name : Nerdbank.GitVersioning
15
+ uses : dotnet/nbgv@latest
16
+ setAllVars : true
17
+ stamp : true
18
+
19
+ # Create a zip from what's in this repo
15
20
- name : Archive Release
16
21
uses :
thedoctor0/[email protected]
17
22
with :
18
23
type : ' zip'
19
- directory : ' dist/'
20
- path : ' ../'
21
- filename : ' stable.zip'
22
- exclusions : ' *.git* /*node_modules/* .editorconfig dist'
24
+ filename : ' dist/stable.zip'
25
+ exclusions : ' *.git* /*node_modules/* .editorconfig dist version.json'
23
26
command : " mkdir -p dist"
24
27
25
28
# List all the files that have been created
26
29
- name : ' List files'
27
30
run : |
28
31
find dist/ -maxdepth 2 -type f
29
32
30
- - uses : BetaHuhn/do-spaces-action@v2
33
+ - uses : BetaHuhn/do-spaces-action@latest
31
34
with :
32
35
access_key : ${{ secrets.SPACE_ACCESS_KEY}}
33
36
secret_key : ${{ secrets.SPACE_SECRET_KEY }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " system_configs" ,
3
+ "version" : " 1.0.0" ,
4
+ "config" : {
5
+ "aircraft" : {
6
+ "path" : " aircraft"
7
+ },
8
+ "rules" : {
9
+ "path" : " rules"
10
+ },
11
+ "scripts" : {
12
+ "path" : " sounds"
13
+ },
14
+ "sounds" : {
15
+ "path" : " sounds"
16
+ }
17
+ },
18
+ "private" : true
19
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json" ,
3
+ "version" : " 2.0" ,
4
+ "cloudBuild" : {
5
+ "buildNumber" : {
6
+ "enabled" : true
7
+ },
8
+ "setVersionVariables" : true ,
9
+ "setAllVariables" : true
10
+ },
11
+ "pathFilters" : [
12
+ " :!/.github" ,
13
+ " :!/azure-pipelines.yml"
14
+ ],
15
+ "publicReleaseRefSpec" : [
16
+ " ^refs/heads/main" ,
17
+ " ^refs/heads/v\\ d+(?:\\ .\\ d+)?$"
18
+ ]
19
+ }
You can’t perform that action at this time.
0 commit comments