feat(transform): development #34
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: development | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: | |
| - next | |
| - beta | |
| - alpha | |
| - dev | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: nelonoel/[email protected] | |
| - name: Cdfi | |
| uses: actions/checkout@v4 | |
| - name: CFDI dependencies | |
| uses: ./.github/actions/cfdi | |
| with: | |
| token: ${{ secrets.PAT_TOKEN }} | |
| - name: Publish | |
| run: | | |
| echo $BRANCH_NAME | |
| rush publish --publish --tag $BRANCH_NAME --include-all --set-access-level=public --apply | |
| git commit -a -m 'npm(publish): new releases' || echo "No changes to commit" | |
| git push origin $BRANCH_NAME | |
| env: | |
| NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |