-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 1009 Bytes
/
package.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
name: Create Archive
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Bump version and push tag
id: bump
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: patch
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: "zip"
filename: "BrassburgFixes-${{ steps.bump.outputs.new_tag }}.zip"
exclusions: "*.git*"
- name: Upload to GitHub
uses: ncipollo/[email protected]
with:
artifacts: "BrassburgFixes-${{ steps.bump.outputs.new_tag }}.zip"
artifactErrorsFailBuild: true
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.bump.outputs.new_tag }}
name: ${{ steps.bump.outputs.new_tag }}
body: ${{ steps.bump.outputs.changelog }}
commit: ${{ github.sha }}