-
-
Notifications
You must be signed in to change notification settings - Fork 35
66 lines (61 loc) · 1.94 KB
/
deploy.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
name: Build
# This workflow deploys compiled binaries to a dedicated repository used for
# building Umbra plugins using a github workflow. This ensures that plugin
# developers don't have to manually build and upload their plugins to their
# repositories and always builds against the latest tagged version of Umbra.
on:
workflow_dispatch:
push:
tags:
- "*"
env:
PUBLIC_NAME: Umbra
SOLUTION_NAME: Umbra
RELEASE_DIR: out/Release
DIST_REPOSITORY: una-xiv/umbra-dist
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Download Dalamud
run: |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -OutFile latest.zip
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev\"
- name: Restore project
run: dotnet restore -r win ${{ env.SOLUTION_NAME }}.sln
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
- name: Build project
run: dotnet build --configuration Release
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
- uses: actions/upload-artifact@v4
with:
name: UmbraDistZip
path: ${{ env.RELEASE_DIR }}
if-no-files-found: error
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{ env.DIST_REPOSITORY }}
token: ${{ secrets.PAT }}
- uses: actions/download-artifact@v4
with:
name: UmbraDistZip
path: dist
- uses: EndBug/add-and-commit@v7
with:
branch: main
add: --all
author_name: GitHub Action
author_email: github-actions[bot]@users.noreply.github.com
message: Update ${{ env.SOLUTION_NAME }} ${{ github.ref_name }}