ci: wip! #4
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
name: Release | |
on: | |
push | |
env: | |
node_version: 20 | |
permissions: | |
contents: write | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.release_token }} | |
- run: | | |
echo "Hello World" >> test.txt | |
git add test.txt | |
git commit -m "Hello World" | |
# - name: Set author in Git | |
# run: | | |
# git config --local user.email [email protected] | |
# git config --local user.name bitvavo-bot | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: ${{ env.node_version }} | |
# - run: npm ci | |
# - name: Bump version | |
# run: npm version ${{ github.event.inputs.version }} | |
# - name: Push release commit | |
# run: git push --tags origin ${{ github.ref_name }} | |
# - uses: ncipollo/release-action@v1 | |
# with: | |
# tag: v${{ github.event.inputs.version }} | |
# draft: true |