Unverified Commit 88e15820 authored by Sparkf's avatar Sparkf 🏙️ Committed by GitHub
Browse files

Create release.yml

parent 0fac4aa0
Loading
Loading
Loading
Loading

.github/release.yml

0 → 100644
+20 −0
Original line number Diff line number Diff line
name: Create release

on:
  push:
    tags:
      - 'v*.*.*'

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Release
        uses: softprops/action-gh-release@v1
        if: startsWith(github.ref, 'refs/tags/')
        with:
          body_path: CHANGELOG.txt
        env:
          GITHUB_TOKEN: ${{ secrets.ORG_TOKEN }}