Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/actions/cfdi/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,18 @@ runs:

- name: Rush CLI
shell: bash
run: |
run: |
npm install -g @microsoft/rush@5.169.2
rush update

- name: Rush Update
- name: GitHub User
shell: bash
run: |
git config user.name MisaelMa
git config user.email amisael.amir.misael@gmail.com

ls -la
#- name: execa
# shell: bash
# run: npm install execa

- name: Script
uses: actions/github-script@v7
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
- name: Setup Node.js for Trusted Publishing
uses: actions/setup-node@v4
with:
node-version: '23'
node-version: '24'
registry-url: 'https://registry.npmjs.org'

- name: Determine branch
id: branch
Expand All @@ -50,11 +51,11 @@ jobs:

- name: Publish (main)
if: steps.branch.outputs.is_main == 'true'
run: node common/scripts/npm-publish.js
run: rush publish -p -b main --include-all --set-access-level=public

- name: Publish (prerelease)
if: steps.branch.outputs.is_main == 'false'
run: node common/scripts/npm-publish.js --tag ${{ steps.branch.outputs.name }}
run: rush publish --publish --tag ${{ steps.branch.outputs.name }} --include-all --set-access-level=public --apply

- name: Commit version bumps
run: |
Expand Down
Loading