Skip to content

Commit

Permalink
ci(github): create tag and release
Browse files Browse the repository at this point in the history
  • Loading branch information
lanathlor committed Dec 4, 2024
1 parent 1479dab commit 6cee84b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create release and tag

on:
push:

jobs:
create-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: get tag version
id: get_tag_version
run: version=$(cat version.txt) >> $GITHUB_OUTPUT

- name: test
run: echo ${{ steps.get_tag_version.outputs.version }}

0 comments on commit 6cee84b

Please sign in to comment.