diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml deleted file mode 100644 index 8a7a9578..00000000 --- a/.github/workflows/continuous-delivery.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Continuous Delivery (CD) - -on: - release: - types: [published] - -# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs -permissions: - contents: write - -jobs: - publish-binary: - name: Publish Binary - runs-on: ubuntu-latest - steps: - - name: Checkout code. - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - name: Publish binary. - run: make publish-binary RELEASE="${GITHUB_REF_NAME}" - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by GitHub Actions. - publish-crate: - name: Publish Crate - runs-on: ubuntu-latest - steps: - - name: Checkout code. - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - name: Publish crate. - run: make publish-crate - env: - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}