diff --git a/.github/workflows/autorelease.yml b/.github/workflows/autorelease.yml index 7df684b..aa783db 100644 --- a/.github/workflows/autorelease.yml +++ b/.github/workflows/autorelease.yml @@ -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