Skip to content

Commit

Permalink
Revert "feat(actions): added release workflow"
Browse files Browse the repository at this point in the history
This reverts commit 41006fe.
  • Loading branch information
Lulalaby committed Apr 22, 2023
1 parent 41006fe commit 8fb9a54
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# This is a release workflow which executes the command "npm run package" in the "src" folder.
# the output will be found as "rmmv-core.zip" script in the "src" folder.
# The zip will be uploaded as an artifact and published as a release in the end.

name: Release

on:
Expand All @@ -20,14 +16,15 @@ on:
permissions: write-all

jobs:
build:
release:
name: Release RMMV-Core
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: latest
node-version: 16.x
- name: Install dependencies
run: npm install
working-directory: ./src
Expand All @@ -49,4 +46,5 @@ jobs:
prerelease: ${{ inputs.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
files: src/rmmv-core.zip
files: src/rmmv-core.zip
target_commitish: ${{ github.ref_name }}

0 comments on commit 8fb9a54

Please sign in to comment.