From a12314e0e24a6e62ce75a84e69495d1672ebb448 Mon Sep 17 00:00:00 2001 From: Marcel Eichner Date: Thu, 2 Jan 2025 15:32:44 +0100 Subject: [PATCH] chore: wip --- .github/workflows/default.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index a3207ec..859f0fd 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -9,7 +9,6 @@ on: pull_request: jobs: - # https://github.com/github/super-linter lint: runs-on: ubuntu-latest steps: @@ -38,8 +37,9 @@ jobs: test: runs-on: ubuntu-latest - needs: [lint, build] - + needs: + - lint + - build steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup @@ -74,17 +74,14 @@ jobs: id: release with: token: ${{ secrets.GITHUB_TOKEN }} + target-branch: ${{ github.ref_name }} release-type: node - - run: - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} publish: if: ${{ needs.release.outputs.release_created }} + runs-on: ubuntu-latest needs: - release - runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup