Skip to content

Commit

Permalink
chore: onboard to semver
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-babu committed Feb 16, 2023
1 parent 9ad7503 commit b54e4bc
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 33 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: CI
on:
push:
branches:
- "main"
pull_request:

jobs:
stylua:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Stylua check
uses: JohnnyMorganz/stylua-action@v2
with:
# token is needed because the action allegedly downloads binary from github releases
token: ${{ secrets.GITHUB_TOKEN }}
# CLI arguments
args: --check .
version: latest
generateTOC:
name: TOC Generator
runs-on: ubuntu-latest
steps:
- uses: technote-space/toc-generator@v4
with:
CHECK_ONLY_DEFAULT_BRANCH: true
release:
name: release

if: ${{ github.ref == 'refs/heads/main' }}
needs:
- stylua
- generateTOC
runs-on: ubuntu-latest

steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: simple
package-name: mason-null-ls.nvim
- uses: actions/checkout@v3
- 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
22 changes: 0 additions & 22 deletions .github/workflows/stylua.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/toc.yml

This file was deleted.

0 comments on commit b54e4bc

Please sign in to comment.