diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f4aa459..25d6ee39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,8 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v6 - - uses: actions/setup-node@v6 + - name: Install npm + uses: actions/setup-node@v6 - run: | npm ci working-directory: web diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 057c2a7e..108bc174 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: permissions: contents: write jobs: - tag-and-publish: + version-and-release: runs-on: ubuntu-latest steps: - name: Checkout repository @@ -16,8 +16,10 @@ jobs: fetch-depth: 0 - name: Install uv uses: astral-sh/setup-uv@v7 - - name: Python Semantic Release - id: release - uses: python-semantic-release/python-semantic-release@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} + - name: Install npm + uses: actions/setup-node@v6 + - name: Run Semantic Release + run: | + uvx python-semantic-release version + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}