Bump version from 1.1.0 to 1.1.1 #5
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
# This workflow is used for an ugly workaround. If you are feeling adventurous, check out `publish.yml`. | |
name: Save Commit Ref to file | |
on: push | |
jobs: | |
save_ref: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save GitHub Ref Name to File | |
run: echo "${{ github.ref_name }}" > ref_name.txt | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ref_name_file | |
path: ref_name.txt |