-
Notifications
You must be signed in to change notification settings - Fork 39
36 lines (34 loc) · 1.05 KB
/
Copy pathrelease.yml
File metadata and controls
36 lines (34 loc) · 1.05 KB
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
name: Create Release
on:
push:
tags-ignore:
- testing_*
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Prepare Environment
uses: Aether-Tools/Deployment/.github/actions/prepare-environment@master
with:
project: CustomizePlus
- name: Build and Upload Artifact
uses: Aether-Tools/Deployment/.github/actions/build-with-artifact@master
with:
project: CustomizePlus
version: ${{ github.ref_name }}
- name: Create Release
uses: Aether-Tools/Deployment/.github/actions/create-release@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
project: CustomizePlus
version: ${{ github.ref_name }}
- name: Update repo.json
uses: Aether-Tools/Deployment/.github/actions/update-repo@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
project: CustomizePlus
version: ${{ github.ref_name }}
branch: main