From 244ede8c1003c8c1259480157d020fab88ec97a2 Mon Sep 17 00:00:00 2001 From: Morgan Date: Mon, 3 Jun 2024 19:25:02 +0200 Subject: [PATCH] ci: remove monthly snapshots (#2263) a latest "dev" tag was published, when it shouldn't have been: https://github.com/gnolang/gno/releases/tag/v0.0.1-dev.2024.06.01 this PR removes the monthly snapshots CI in favour of nightlies and normal releases. --- .github/workflows/monthly-snapshots.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/monthly-snapshots.yml diff --git a/.github/workflows/monthly-snapshots.yml b/.github/workflows/monthly-snapshots.yml deleted file mode 100644 index 5bf912f503f..00000000000 --- a/.github/workflows/monthly-snapshots.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Monthly Snapshots - -on: - schedule: - - cron: '0 0 1 * *' - workflow_dispatch: - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Generate tag name - id: tag_name - run: echo "::set-output name=tag_name::v0.0.1-dev.$(date +'%Y.%m.%d')" - - name: Release - uses: softprops/action-gh-release@v2 - with: - generate_release_notes: true - prerelease: true - tag_name: '${{ steps.tag_name.outputs.tag_name }}'