diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd2e809..5564cff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: compile and release + - name: Build and Release uses: ngs/go-release.action@v1.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: compile and release + - name: Build and Release uses: ngs/go-release.action@v1.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: compile and release + - name: Build and Release uses: ngs/go-release.action@v1.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..125bb67 --- /dev/null +++ b/.github/workflows/tag.yml @@ -0,0 +1,14 @@ +name: Bump version +on: + push: + branches: + - master +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Bump version and push tag + uses: mathieudutour/github-tag-action@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file