Skip to content

Commit

Permalink
ci: always force publishing of all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Dec 20, 2022
1 parent 4d36bb7 commit 6781f12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ jobs:
- name: Bump version to custom version
if: ${{ github.event.inputs.version == 'custom' && github.event.inputs.custom_version != '' }}
run: npm run version ${{ github.event.inputs.custom_version}} -- --yes
run: npm run version ${{ github.event.inputs.custom_version}} -- --force-publish --yes
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_USER: "noreply@apify.com:${{ secrets.GH_TOKEN }}"
GH_TOKEN: ${{ secrets.GH_TOKEN }}

- name: Bump version to ${{ github.event.inputs.version }} version
if: ${{ github.event.inputs.version != 'custom' }}
run: npm run version ${{ github.event.inputs.version}} -- --yes
run: npm run version ${{ github.event.inputs.version}} -- --force-publish --yes
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_USER: "noreply@apify.com:${{ secrets.GH_TOKEN }}"
Expand Down

0 comments on commit 6781f12

Please sign in to comment.