Delete .github/workflows/release.yaml

This commit is contained in:
Lost Paul 2024-03-19 22:40:25 +01:00 committed by GitHub
parent 29b0a2d922
commit 55113c7998
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,21 +0,0 @@
# https://github.com/SilentVoid13/Templater/blob/master/.github/workflows/release.yml
name: Plugin release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: npm build
run: |
npm install
npm run build --if-present
- name: Plugin release
uses: ncipollo/release-action@v1.12.0
with:
artifacts: "main.js,manifest.json,styles.css"
token: ${{ secrets.GITHUB_TOKEN }}