Bump @types/node from 22.7.8 to 22.8.1 (#1006) #801
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
name: Continuous Delivery | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Select Node.js version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci --no-audit --no-progress --prefer-offline | |
- name: Package action | |
run: npm run package | |
- name: Create tag | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email [email protected] | |
git add dist | |
git commit -m "Update action" | |
git push origin :refs/tags/'v${{ secrets.MERGEBOT_MAJOR }}' | |
git tag -a 'v${{ secrets.MERGEBOT_MAJOR }}' -m "Update action" --force | |
git push --tags |