diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 115bffe..45ae9e4 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -37,15 +37,15 @@ jobs: - name: Create .npmrc run: | mkdir -p ~/.npm - echo "registry=https://gitea.controller.bittehackmichnicht.de/api/packages/${{ github.repository }}/npm/" > ~/.npmrc - echo "//gitea.controller.bittehackmichnicht.de/api/packages/${{ github.repository }}/npm/:_authToken=${{ secrets.GITEA_TOKEN }}" >> ~/.npmrc + echo "registry=https://gitea.controller.bittehackmichnicht.de/api/packages/apps/npm/" > ~/.npmrc + echo "//gitea.controller.bittehackmichnicht.de/api/packages/apps/npm/:_authToken=${{ secrets.GITEA_TOKEN }}" >> ~/.npmrc - name: Build & publish npm package env: VERSION: ${{ steps.generate_tag.outputs.VERSION }} run: | npm version $VERSION --no-git-tag-version npm run build - npm publish --registry https://gitea.controller.bittehackmichnicht.de/api/packages/${{ github.repository }}/npm/ --tag alpha + npm publish --registry https://gitea.controller.bittehackmichnicht.de/api/packages/apps/npm/ --tag alpha - name: Build & publish image env: TAG: ${{ steps.generate_tag.outputs.TAG }}