From f13baf738bef9f8f7e085a7d31de473611197c00 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Wed, 9 Jun 2021 15:08:37 +0530 Subject: * Workflow Changes --- .github/workflows/master.yml | 34 +++++++--------------------------- 1 file changed, 7 insertions(+), 27 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 5320ce3..24b5ff8 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -21,24 +21,13 @@ jobs: - uses: paulhatch/semantic-version@v4.0.2 id: version_name with: - # The prefix to use to identify tags 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)" - # Same as above except indicating a minor change, supports regular expressions wrapped with '/' minor_pattern: "(MINOR)" - # A string to determine the format of the version output 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: "./" - # Named version, will be used as suffix for name version tag - namespace: project-b - # Indicate whether short tags like 'v1' should be supported. If false only full - # tags like 'v1.0.0' will be recognized. + namespace: retrowave short_tags: true - # If this is set to true, *every* commit will be treated as a new version. bump_each_commit: false - uses: "marvinpinto/action-automatic-releases@latest" id: create_release @@ -49,24 +38,15 @@ jobs: 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 }} - # - 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 \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.TOKEN }} \ No newline at end of file -- cgit v1.2.3