From da73e22c94fa7d54d82631cf938eaff72844eb02 Mon Sep 17 00:00:00 2001 From: Jelmer Kuperus Date: Thu, 2 Jan 2025 11:13:07 +0100 Subject: [PATCH] We can use github relases instead --- .github/workflows/release.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 6cdbc30..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Release pipeline - -permissions: - contents: write - -on: - workflow_dispatch: - inputs: - version: - description: Semantic version. For example 1.0.0 - required: true - -jobs: - ci-pipeline: - runs-on: ubuntu-22.04 - steps: - - name: Checkout main branch - uses: actions/checkout@v3 - with: - token: ${{ secrets.RELEASE_TOKEN }} - - name: Release - run: | - git config --global user.email "action@github.com" - git config --global user.name "GitHub Action" - git tag -a v${{ github.event.inputs.version }} -m "next release" - git push --tags