modified: .github/workflows/autorelease.yml
Some checks failed
AutoRelease / release (push) Failing after 3m8s
Some checks failed
AutoRelease / release (push) Failing after 3m8s
This commit is contained in:
parent
61cdbb3b7a
commit
b91f95d296
14
.github/workflows/autorelease.yml
vendored
14
.github/workflows/autorelease.yml
vendored
|
@ -19,20 +19,20 @@ jobs:
|
|||
- name: Use Node.js
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '18.x'
|
||||
node-version: "18.x"
|
||||
- name: Install dependencies NUI
|
||||
working-directory: ./web
|
||||
run: yarn install --frozen-lockfile
|
||||
run: npm install --frozen-lockfile
|
||||
- name: Build UI
|
||||
working-directory: ./web
|
||||
run: yarn build
|
||||
run: npm build
|
||||
- name: Zip Folder
|
||||
run: zip -r ${{ github.event.repository.name }}.zip config.lua fxmanifest.lua impl.lua main.lua README.md LICENSE web/build/* locales/* client/* server/*
|
||||
- uses: 'marvinpinto/action-automatic-releases@latest'
|
||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: '${{ secrets.GITHUB_TOKEN }}'
|
||||
title: '${{ github.event.head_commit.message }}'
|
||||
automatic_release_tag: 'latest'
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
title: "${{ github.event.head_commit.message }}"
|
||||
automatic_release_tag: "latest"
|
||||
prerelease: false
|
||||
files: |
|
||||
*.zip
|
||||
|
|
Loading…
Reference in New Issue
Block a user