-
-
Notifications
You must be signed in to change notification settings - Fork 38
67 lines (57 loc) · 1.99 KB
/
release-brio.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
name: Release Brio
on:
workflow_dispatch:
inputs:
version:
description: Version tag to create
required: true
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Download Dalamud
run: |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile latest.zip
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev"
- name: Restore Dependencies
run: dotnet restore Brio.sln
- name: Build Brio
run: dotnet build Brio.sln --no-restore /p:Configuration=Release /p:Version=${{ github.event.inputs.version }}
- name: Zip Release
uses: TheDoctor0/[email protected]
with:
filename: '../../../../Brio.zip'
directory: './Brio/bin/x64/Release/'
exclusions: 'Brio Brio/*'
- name: Upload Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "./Brio.zip"
name: Brio v${{ github.event.inputs.version }}
tag: v${{ github.event.inputs.version }}
draft: false
token: ${{ secrets.GITHUB_TOKEN }}
commit: ${{ vars.GITHUB_SHA }}
- name: Update repo.json
run: |
git config --global user.name "Actions User"
git config --global user.email "[email protected]"
git fetch origin main && git checkout main
$ver = '${{ github.event.inputs.version }}'
$path = './Resources/Templates/repo.tmpl'
$new_path = './repo.json'
$content = get-content -path $path
$content = $content -replace '{version}',$ver
set-content -Path $new_path -Value $content
git add repo.json
git commit -m "[CI] Updating versions for v${{ github.event.inputs.version }}" || true
git push origin main || true