fix: precision check for salvage value #1077
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: Generate Semantic Release | ||
on: | ||
push: | ||
branches: | ||
<<<<<<< HEAD | ||
- version-15 | ||
======= | ||
- version-13 | ||
>>>>>>> da09316d4c (fix: precision check for salvage value) | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Entire Repository | ||
<<<<<<< HEAD | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
======= | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
>>>>>>> da09316d4c (fix: precision check for salvage value) | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20 | ||
<<<<<<< HEAD | ||
======= | ||
>>>>>>> da09316d4c (fix: precision check for salvage value) | ||
- name: Setup dependencies | ||
run: | | ||
npm install @semantic-release/git @semantic-release/exec --no-save | ||
- name: Create Release | ||
env: | ||
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
GIT_AUTHOR_NAME: "Frappe PR Bot" | ||
GIT_AUTHOR_EMAIL: "[email protected]" | ||
GIT_COMMITTER_NAME: "Frappe PR Bot" | ||
GIT_COMMITTER_EMAIL: "[email protected]" | ||
run: npx semantic-release |