-
Notifications
You must be signed in to change notification settings - Fork 11
84 lines (72 loc) · 2.4 KB
/
build.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Build and create version tag
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
include:
- os: windows-latest
extension: ".zip"
runtime: "win-x64"
- os: ubuntu-latest
extension: ".tar.gz"
runtime: "linux-x64"
- os: macos-latest
runtime: "osx-x64"
extension: ".zip"
node_version: [18]
fail-fast: false
runs-on: ${{ matrix.os }}
env:
PROJECT_NAME: "Angor"
SOLUTION_PATH: "src/Angor.sln"
PROJECT_PATH: "src/Angor/Server/Angor.Server.csproj"
BUILD_CONFIGURATION: "Release"
steps:
- uses: actions/checkout@v1
name: Checkout
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
8.0.x
- name: Setup Node.js (${{ matrix.node_version }})
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: Variables
run: |
echo VERSION=$(npm run version --silent) >> $GITHUB_ENV
shell: bash
- name: Workload
run: dotnet workload restore ${{env.SOLUTION_PATH}}
- name: Restore
run: dotnet restore ${{env.SOLUTION_PATH}}
- name: Unit Test
run: dotnet test -v=normal -c ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}}
- name: Check for changes in Directory.Build.props
if: matrix.os == 'ubuntu-latest'
id: check_changes
run: |
if git diff --name-only HEAD^ HEAD | grep -q '^src/Directory.Build.props$'; then
echo "File Directory.Build.props has changed."
echo "::set-output name=changed::true"
else
echo "File Directory.Build.props has not changed."
echo "::set-output name=changed::false"
fi
# we must use a custom token to trigger workflows ANGOR_DEPLOY_TOKEN
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow
- name: Create tag
if: steps.check_changes.outputs.changed == 'true'
env:
TAG_NAME: "v${{env.VERSION}}"
run: |
sleep 10
git tag $TAG_NAME
git push https://x-access-token:${{ secrets.ANGOR_DEPLOY_TOKEN }}@github.com/${{ github.repository }} $TAG_NAME