diff options
author | Max <[email protected]> | 2023-02-12 10:53:41 +0100 |
---|---|---|
committer | Max <[email protected]> | 2023-02-12 10:53:41 +0100 |
commit | b36071a9391326ce4910febb19ffd377e99e49db (patch) | |
tree | 6ce774905fe8686ba392996b6819baea40f8f74a | |
parent | 5ae99187cc58b394093becd348ba474139375307 (diff) |
feat: add release action
-rw-r--r-- | .github/workflows/ci.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8578e50 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: CI +on: + push: + pull_request: + +jobs: + release: + name: release + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + id: release + with: + release-type: simple + package-name: startup.nvim + - uses: actions/checkout@v2 + - name: tag stable versions + if: ${{ steps.release.outputs.release_created }} + run: | + git config user.name github-actions[bot] + git config user.email github-actions[bot]@users.noreply.github.com + git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" + git tag -d stable || true + git push origin :stable || true + git tag -a stable -m "Last Stable Release" + git push origin stable + |