diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index aa49ed4a1..26111c518 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -215,7 +215,7 @@ jobs: - uses: actions/checkout@v4 with: repository: 'cryptomator/aur-bin' - token: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + token: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Install dependencies run: | sudo apt-get update @@ -245,7 +245,7 @@ jobs: URL=$(gh pr create --title "Release ${{ needs.get-version.outputs.semVerStr }}" --body-file pr_body.md) echo "PR_URL=$URL" >> "$GITHUB_OUTPUT" env: - GH_TOKEN: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + GH_TOKEN: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Slack Notification uses: rtCamp/action-slack-notify@v2 env: diff --git a/.github/workflows/aur.yml b/.github/workflows/aur.yml index f3b5e3848..e290be872 100644 --- a/.github/workflows/aur.yml +++ b/.github/workflows/aur.yml @@ -49,7 +49,7 @@ jobs: - uses: actions/checkout@v4 with: repository: 'cryptomator/aur' - token: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + token: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Install dependencies run: | sudo apt-get update @@ -77,7 +77,7 @@ jobs: PR_URL=$(gh pr create --title "Release ${{ needs.get-version.outputs.semVerStr }}" --body-file pr_body.md) echo "AUR_PR_URL=$PR_URL" >> "$GITHUB_ENV" env: - GH_TOKEN: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + GH_TOKEN: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Slack Notification uses: rtCamp/action-slack-notify@v2 if: github.event_name == 'release' diff --git a/.github/workflows/flathub.yml b/.github/workflows/flathub.yml index da8f6c77f..85e2cb435 100644 --- a/.github/workflows/flathub.yml +++ b/.github/workflows/flathub.yml @@ -49,7 +49,7 @@ jobs: - uses: actions/checkout@v4 with: repository: 'flathub/org.cryptomator.Cryptomator' - token: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + token: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Checkout release branch run: | git checkout -b release/${{ needs.get-version.outputs.semVerStr }} @@ -72,7 +72,7 @@ jobs: PR_URL=$(gh pr create --title "Release ${{ needs.get-version.outputs.semVerStr }}" --body-file pr_body.md) echo "FLATHUB_PR_URL=$PR_URL" >> "$GITHUB_ENV" env: - GH_TOKEN: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + GH_TOKEN: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Slack Notification uses: rtCamp/action-slack-notify@v2 if: github.event_name == 'release' diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml index 476e409e3..0beb75544 100644 --- a/.github/workflows/winget.yml +++ b/.github/workflows/winget.yml @@ -16,7 +16,7 @@ jobs: run: | gh repo sync cryptomator/winget-pkgs -b master --force env: - GH_TOKEN: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} + GH_TOKEN: ${{ secrets.CRYPTOBOT_PR_TOKEN }} - name: Submit package uses: vedantmgoyal2009/winget-releaser@main with: @@ -24,4 +24,4 @@ jobs: version: ${{ inputs.tag }} release-tag: ${{ inputs.tag }} installers-regex: '-x64\.msi$' - token: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }} \ No newline at end of file + token: ${{ secrets.CRYPTOBOT_PR_TOKEN }} \ No newline at end of file