From 00e9539e22de438008edf4925c280c7183414ebe Mon Sep 17 00:00:00 2001 From: Oj Date: Sat, 11 Dec 2021 10:14:41 +0000 Subject: [PATCH] [CI] Try different way of making releases --- .github/workflows/release_nightly.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index 4357bf2..40833ed 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -26,16 +26,13 @@ jobs: npm i -g asar node injectPolyfills.js rm -rf src/package-lock.json src/node_modules/.package-lock.json src/splash/splashScreen.js.self src/node_modules/**/package.json src/node_modules/**/*.md src/node_modules/**/.*.yml src/node_modules/**/.npmignore src/node_modules/**/LICENSE src/node_modules/**/test* - npx asar pack src openasar.asar + npx asar pack src app.asar - - name: GitHub Release - uses: ncipollo/release-action@v1 + - uses: "marvinpinto/action-automatic-releases@latest" with: - tag: "nightly" - allowUpdates: true + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "nightly" prerelease: true - artifacts: "openasar.asar" - - name: "Nightly" - - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + title: "Nightly" + files: | + app.asar \ No newline at end of file