Skip to content

fix(SPV-000): change to correct key in CreateXPub method (#117) #86

fix(SPV-000): change to correct key in CreateXPub method (#117)

fix(SPV-000): change to correct key in CreateXPub method (#117) #86

Workflow file for this run

name: Automatic Git Tag
permissions:
contents: write
on:
push:
branches:
- main
- master
jobs:
tag-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Because of some github action optimisation [discussed here](https://github.com/orgs/community/discussions/27028)
# We're using Deploy key
ssh-key: "${{ secrets.DEPLOYMENT_KEY }}"
- name: Create version tag
run: ./release/tag-next-version.sh
- name: Push new tag
run: git push --tags