Commit 94a8dcbe authored by Sparkf's avatar Sparkf 🏙️
Browse files

move workflow

parent 6539449e
Loading
Loading
Loading
Loading

.github/release.yml

deleted100644 → 0
+0 −20
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 }}