Skip to content

ci(github): create tag and release #3

ci(github): create tag and release

ci(github): create tag and release #3

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
echo "version=$(cat version.txt)\n" >> $GITHUB_OUTPUT
- name: test
run: |
echo ${{join(steps.get_tag_version.outputs.*, '\n')}}
echo ${{ steps.get_tag_version.outputs.version }}