Skip to content

Update secrets in CI workflow #14

Update secrets in CI workflow

Update secrets in CI workflow #14

Workflow file for this run

name: Main CI
on:
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Log
run: echo "${{ secrets.ACTIONS_PTA }} ${{ secrets.NPM_REGISTRY_URL }}"
- uses: actions/checkout@v4
with:
fetch-depth: 2
token: ${{ secrets.ACTIONS_PTA }}
- name: Git set author name
run: git config --global user.name "runespoorengineering"
- name: Git set author email
run: git config --global user.email "runespoorengineering@gmail.com"
- name: Use Node.js/20.9.0
uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Verify Change Logs
run: node common/scripts/install-run-rush.js change --verify
- name: Rush Install
run: node common/scripts/install-run-rush.js install
- name: Rush Rebuild
run: node common/scripts/install-run-rush.js rebuild --verbose
- name: Rush Publish
run: node common/scripts/install-run-rush.js publish --apply --target-branch ${{ github.event.repository.default_branch }} --add-commit-details