Skip to content

Merge pull request #4 from Sancretor/fix/go-module-name #6

Merge pull request #4 from Sancretor/fix/go-module-name

Merge pull request #4 from Sancretor/fix/go-module-name #6

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- 'main'
tags-ignore:
- '**'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
- name: Release
id: release
uses: cycjimmy/semantic-release-action@5982a02995853159735cb838992248c4f0f16166 # v2
with:
semantic_version: 17.4.7
branches: |
[
'main'
]
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
env:
GIT_CREDENTIALS: git:${{ secrets.PAT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}