Update projects/dg-docassembly-api digest to 73ed96d #1357
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: | |
branches: | |
- main | |
jobs: | |
create_release_tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create tag | |
uses: actions/github-script@v5 | |
with: | |
script: | | |
try { | |
github.rest.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: "refs/tags/" + "0.19." + context.runNumber, | |
sha: context.sha | |
}) | |
} catch(err) { | |
core.warning(`Failed to create ${context.runNumber}: ${err}`); | |
} |