From 842382d3f8499fcf983a0d4b6f035d0e47d11de4 Mon Sep 17 00:00:00 2001 From: Maud Royer Date: Thu, 20 Jun 2024 18:32:57 +0200 Subject: [PATCH] fix: workflow syntax --- .github/workflows/publish.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1864dd7..61122a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,16 +8,16 @@ on: - 'v*' jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - registry-url: 'https://npm.pkg.github.com' - node-version: '20' - scope: '@medialab' - - run: npm ci - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + registry-url: 'https://npm.pkg.github.com' + node-version: '20' + scope: '@medialab' + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}