chore(main): release 3.2.1 #64
Workflow file for this run
This file contains 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
on: | |
push: | |
branches: | |
- release-please--** | |
name: "Build & Push Dist" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.INTEGRATIONS_FNM_BOT_TOKEN }} | |
- name: Set Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: install | |
run: npm ci | |
- name: build | |
run: npm run build | |
- name: update README | |
run: |- | |
MAJOR_VERSION=$(cat package.json \ | |
| grep version \ | |
| head -1 \ | |
| awk -F: '{ print $2 }' \ | |
| sed 's/[", ]//g' \ | |
| awk -F. '{ print $1 }') | |
sed -i "s/\(uses: OctopusDeploy\/push-build-information-action@\).*/\1v${MAJOR_VERSION}/g" README.md | |
- name: commit | |
run: |- | |
git config --global user.name "team-integrations-fnm-bot" | |
git config user.email '[email protected]' | |
git add README.md | |
git add dist/ | |
git diff-index --quiet HEAD || (git commit -m "chore: build dist and update README" && git push origin) |