blob: 24b5ff8975ef6327f22a779e9e7068777507f008 (
plain)
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
|
name: ReleaseAddon
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Zip Folder
run: zip -r plugin.retrowave.indrajith.zip . -x ".git/*" ".github/*"
- name: Release to Github
run: echo "Release"
- name: Create Release Folder
run: rsync -arv --exclude='.git/' --exclude='.github/' --exclude='.gitignore' . ./release
- name: Switch to Release Folder
run: |
cd release
ls -la
- uses: paulhatch/semantic-version@v4.0.2
id: version_name
with:
tag_prefix: "v"
major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)"
format: "${major}.${minor}.${patch}-prerelease${increment}"
change_path: "./"
namespace: retrowave
short_tags: true
bump_each_commit: false
- uses: "marvinpinto/action-automatic-releases@latest"
id: create_release
with:
repo_token: "${{ secrets.TOKEN }}"
prerelease: true
automatic_release_tag: "latest"
title: "Development Build"
files: |
*.zip
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
REPO_OWNER: cooljith91112
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: plugin.retrowave.indrajith.zip
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|