From 893bf964fac70b84d22caee9e240cfc38f6a299f Mon Sep 17 00:00:00 2001 From: "Luca T." Date: Fri, 20 Sep 2024 09:06:58 +0200 Subject: [PATCH] Revert "Merge pull request #105 from misthero/release/testing" This reverts commit d0f8a8b74710ad9858bc22981abeb75e39ef69f5, reversing changes made to bf100bd8d406d9cedab2cfba5e96fb01f6019b70. --- .github/workflows/npm-gulp.yml | 59 ---------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/npm-gulp.yml diff --git a/.github/workflows/npm-gulp.yml b/.github/workflows/npm-gulp.yml deleted file mode 100644 index 5b3be8f..0000000 --- a/.github/workflows/npm-gulp.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: Release Creation - -on: - release: - types: [published] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - # Get part of the tag after the `v`. - - name: Extract tag version number - id: get_version - uses: battila7/get-version-action@v2 - - # Modify manifest version, download, esmodules, styles, remove hotreload. - - name: Modify Manifest to remove HotReload - uses: microsoft/variable-substitution@v1 - with: - files: "module.json" - env: - flags.hotReload: false - version: ${{steps.get_version.outputs.version-without-v}} - download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/system.zip - - # Set up Node - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: '20.10.0' - cache: 'npm' - - # `npm ci` is recommended: - # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs - - name: Install Dependencies - run: npm ci - - # Create zip file. - - name: Create ZIP archive - run: zip -r ./module.zip module.json CHANGELOG.md LICENSE README.md css/ img/ lang/ packs/ scripts/ templates/ - - # Create a release for this specific version. - - name: Update Release with Files - if: "!github.event.release.prerelease" - id: create_version_release - uses: ncipollo/release-action@v1 - with: - allowUpdates: true - name: ${{ github.event.release.name }} - draft: false - prerelease: false - token: ${{ secrets.GITHUB_TOKEN }} - artifacts: "./module.json, ./module.zip" - tag: ${{ github.event.release.tag_name }} - body: ${{ github.event.release.body }} -