Merge pull request #9 from xmtp-labs/snor/timeout-opt-yml-default #9
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: Create/update tag | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
create-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# To reference an action you need to reference it by Git Tag. | |
# This automatically updates the v1 tag to use the latest code | |
- uses: rickstaa/action-create-tag@v1 | |
with: | |
tag: "v1" | |
message: "v1 release" | |
force_push_tag: true |