diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c47495..8513904 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,13 +2,16 @@ name: release on: release: types: [published] - workflow_run: - workflows: ["Formatting", "Tests"] - types: - - completed jobs: - release: + independent-job: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Perform independent task + run: echo "This job runs independently of other jobs." + release-job: + needs: ["Formatting", "Tests"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4