From 1e25dbec00cd1de5f64401f0c23fd2f5753eadd4 Mon Sep 17 00:00:00 2001 From: SimonShiki Date: Sun, 4 Feb 2024 09:13:01 +0000 Subject: [PATCH] :bug: fix: ci Signed-off-by: SimonShiki --- .github/workflows/validate.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 0b1f6cc..2e0ef38 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -30,14 +30,12 @@ jobs: dist/eureka-loader.user.js dist/unpacked-extension.zip - name: Create Nightly Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: "marvinpinto/action-automatic-releases@latest" with: - tag_name: nightly - release_name: Nightly ${{ github.ref }} - body: | - ⚠️ Here is an nightly preview version, which may contain bugs, errors, or incomplete features. Nightly releases are not stable or supported, and are intended for testing and feedback purposes only. Use them at your own risk - draft: false + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "aurora" prerelease: true + title: "Aurora" + files: | + dist/eureka-loader.user.js + dist/unpacked-extension.zip