Use rc instead of beta

This commit is contained in:
garronej 2022-10-11 16:59:34 +02:00
parent 4c256a39a8
commit 1672a0cf9d
3 changed files with 15 additions and 14 deletions

View file

@ -35,7 +35,7 @@ jobs:
steps: steps:
- name: Tell if project is using npm or yarn - name: Tell if project is using npm or yarn
id: step1 id: step1
uses: garronej/ts-ci@v1.1.9 uses: garronej/ts-ci@v2.0.0
with: with:
action_name: tell_if_project_uses_npm_or_yarn action_name: tell_if_project_uses_npm_or_yarn
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -65,9 +65,9 @@ jobs:
from_version: ${{ steps.step1.outputs.from_version }} from_version: ${{ steps.step1.outputs.from_version }}
to_version: ${{ steps.step1.outputs.to_version }} to_version: ${{ steps.step1.outputs.to_version }}
is_upgraded_version: ${{ steps.step1.outputs.is_upgraded_version }} is_upgraded_version: ${{ steps.step1.outputs.is_upgraded_version }}
is_release_beta: ${{steps.step1.outputs.is_release_beta }} is_pre_release: ${{steps.step1.outputs.is_pre_release }}
steps: steps:
- uses: garronej/ts-ci@v1.1.9 - uses: garronej/ts-ci@v2.0.0
id: step1 id: step1
with: with:
action_name: is_package_json_version_upgraded action_name: is_package_json_version_upgraded
@ -75,13 +75,13 @@ jobs:
create_github_release: create_github_release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
# We create a release only if the version have been upgraded and we are on a default branch # We create a release only if the version have been upgraded and we are on the main branch
# PR on the default branch can release beta but not real release # or if we are on a branch of the repo that has an PR open on main.
if: | if: |
needs.check_if_version_upgraded.outputs.is_upgraded_version == 'true' && needs.check_if_version_upgraded.outputs.is_upgraded_version == 'true' &&
( (
github.event_name == 'push' || github.event_name == 'push' ||
needs.check_if_version_upgraded.outputs.is_release_beta == 'true' needs.check_if_version_upgraded.outputs.is_pre_release == 'true'
) )
needs: needs:
- check_if_version_upgraded - check_if_version_upgraded
@ -93,7 +93,7 @@ jobs:
target_commitish: ${{ github.head_ref || github.ref }} target_commitish: ${{ github.head_ref || github.ref }}
generate_release_notes: true generate_release_notes: true
draft: false draft: false
prerelease: ${{ needs.check_if_version_upgraded.outputs.is_release_beta == 'true' }} prerelease: ${{ needs.check_if_version_upgraded.outputs.is_pre_release == 'true' }}
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -131,11 +131,11 @@ jobs:
false false
fi fi
EXTRA_ARGS="" EXTRA_ARGS=""
if [ "$IS_BETA" = "true" ]; then if [ "$IS_PRE_RELEASE" = "true" ]; then
EXTRA_ARGS="--tag beta" EXTRA_ARGS="--tag next"
fi fi
npm publish $EXTRA_ARGS npm publish $EXTRA_ARGS
env: env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
VERSION: ${{ needs.check_if_version_upgraded.outputs.to_version }} VERSION: ${{ needs.check_if_version_upgraded.outputs.to_version }}
IS_BETA: ${{ needs.check_if_version_upgraded.outputs.is_release_beta }} IS_PRE_RELEASE: ${{ needs.check_if_version_upgraded.outputs.is_pre_release }}

View file

@ -12,7 +12,7 @@ jobs:
- name: Checking availability for module name ${{github.event.repository.name}} on NPM. - name: Checking availability for module name ${{github.event.repository.name}} on NPM.
id: id1 id: id1
uses: garronej/ts-ci@v1.1.9 uses: garronej/ts-ci@v2.0.0
with: with:
action_name: is_well_formed_and_available_module_name action_name: is_well_formed_and_available_module_name
module_name: ${{github.event.repository.name}} module_name: ${{github.event.repository.name}}
@ -38,7 +38,7 @@ jobs:
mv LICENSE.template LICENSE mv LICENSE.template LICENSE
- name : String replace - name : String replace
id: id2 id: id2
uses: garronej/ts-ci@v1.1.9 uses: garronej/ts-ci@v2.0.0
with: with:
action_name: string_replace action_name: string_replace
input_string: ${{github.event.repository.name}} input_string: ${{github.event.repository.name}}

View file

@ -28,8 +28,9 @@ https://user-images.githubusercontent.com/6702424/167035748-4fe28710-ed0f-4feb-a
- Go to the repository ``Settings`` tab, then ``Secrets`` you will need to add a new secret: - Go to the repository ``Settings`` tab, then ``Secrets`` you will need to add a new secret:
``NPM_TOKEN``, you NPM authorization token. ``NPM_TOKEN``, you NPM authorization token.
- To trigger publishing edit the ``package.json`` ``version`` field ( ``0.0.0``-> ``0.0.1`` for example) then push changes... that's all ! - To trigger publishing edit the ``package.json`` ``version`` field ( ``0.0.0``-> ``0.0.1`` for example) then push changes... that's all !
- Publish beta release by setting your version number to `X.Y.Z-beta.T` (example: `1.0.0-beta.32`). You usually want to do that from a branch, - Publish pre-release by setting your version number to `X.Y.Z-rc.U` (example: `1.0.0-rc.32`). On NPM the version will be tagged `next`.
it work as well! You just have to open a PR. - The CI runs on `main` and on the branches that have a PR open on `main`.
# Features # Features
This template automates the boring and tedious tasks of: This template automates the boring and tedious tasks of: