diff --git a/.github/workflows/setTag.yml b/.github/workflows/setTag.yml deleted file mode 100644 index 5e1c319e3..000000000 --- a/.github/workflows/setTag.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Set tag - -# set tag -on: - workflow_dispatch: - inputs: - tag: - type: choice - description: select tag to set - options: - - latest - - next - - stable - required: true - adapter: - type: string - required: true - release: - type: string - required: true - -jobs: - set-tag: - runs-on: ubuntu-latest - steps: -# - uses: actions/setup-node@v4 -# with: -# node-version: 18 -# - run: npm dist-tag list iobroker.webui -# - run: npm --//registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}} dist-tag add iobroker.${{ github.event.inputs.adapter }}@${{ github.event.inputs.release }} ${{ github.event.inputs.tag }} - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 18 - - run: npm i - - run: npm run setTag - env: - OWN_GITHUB_TOKEN: ${{ secrets.OWN_GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - INPUT_ADAPTER: ${{ github.event.inputs.adapter }} - INPUT_RELEASE: ${{ github.event.inputs.release }} - INPUT_TAG: ${{ github.event.inputs.tag }}