* Workflow Changes

This commit is contained in:
Indrajith K L
2021-06-09 15:08:37 +05:30
parent 33ab613664
commit f13baf738b

View File

@@ -21,24 +21,13 @@ jobs:
- uses: paulhatch/semantic-version@v4.0.2 - uses: paulhatch/semantic-version@v4.0.2
id: version_name id: version_name
with: with:
# The prefix to use to identify tags
tag_prefix: "v" tag_prefix: "v"
# A string which, if present in a git commit, indicates that a change represents a
# major (breaking) change, supports regular expressions wrapped with '/'
major_pattern: "(MAJOR)" major_pattern: "(MAJOR)"
# Same as above except indicating a minor change, supports regular expressions wrapped with '/'
minor_pattern: "(MINOR)" minor_pattern: "(MINOR)"
# A string to determine the format of the version output
format: "${major}.${minor}.${patch}-prerelease${increment}" format: "${major}.${minor}.${patch}-prerelease${increment}"
# Optional path to check for changes. If any changes are detected in the path the
# 'changed' output will true. Enter multiple paths separated by spaces.
change_path: "./" change_path: "./"
# Named version, will be used as suffix for name version tag namespace: retrowave
namespace: project-b
# Indicate whether short tags like 'v1' should be supported. If false only full
# tags like 'v1.0.0' will be recognized.
short_tags: true short_tags: true
# If this is set to true, *every* commit will be treated as a new version.
bump_each_commit: false bump_each_commit: false
- uses: "marvinpinto/action-automatic-releases@latest" - uses: "marvinpinto/action-automatic-releases@latest"
id: create_release id: create_release
@@ -49,6 +38,11 @@ jobs:
title: "Development Build" title: "Development Build"
files: | files: |
*.zip *.zip
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
REPO_OWNER: cooljith91112
- name: Release - name: Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
@@ -56,17 +50,3 @@ jobs:
files: plugin.retrowave.indrajith.zip files: plugin.retrowave.indrajith.zip
env: env:
GITHUB_TOKEN: ${{ secrets.TOKEN }} GITHUB_TOKEN: ${{ secrets.TOKEN }}
# - name: upload zip release
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ github.token }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: ./plugin.retrowave.indrajith.zip
# asset_name: plugin.retrowave.indrajith.zip
# asset_content_type: application/gzip
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
REPO_OWNER: cooljith91112