Skip to content

Commit

Permalink
Add versions bumpupper for extension
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkWeird authored Nov 9, 2021
1 parent b8aa53c commit 7fb48ac
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ name: Gradle Package

on:
push:
branches: 'master'
# tags: '*'
tags: 'v*.*.*'

jobs:
build:
Expand Down Expand Up @@ -42,8 +41,23 @@ jobs:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
automatic_release_tag: ${{ github.ref_name }}
prerelease: false
title: ${{ github.ref_name }}
files: 'gh-echo*'
bumpupextension:
runs-on: ubuntu-latest
needs: publish
steps:
- uses: actions/checkout@v2
with:
repository: DarkWeird/gh-echojava
ref: master
token: ${{github.token}}
- run: echo '${{ github.ref_name }}' > tag
- run: git commit -a -m '[Automatic] bumpup version to ${{ github.ref_name }}'
- run: git push




0 comments on commit 7fb48ac

Please sign in to comment.