Skip to content

ci(github): create tag and release #2

ci(github): create tag and release

ci(github): create tag and release #2

Workflow file for this run

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: |
cat version.txt
version=$(cat version.txt) >> $GITHUB_OUTPUT
- name: test
run: |
echo ${{ steps.get_tag_version.outputs.version }}