Update Release File #24
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: Update Release File | |
on: | |
workflow_dispatch: | |
inputs: | |
release_tag: | |
required: true | |
permissions: | |
contents: write | |
actions: write | |
jobs: | |
update-release-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Write tag to release.txt | |
run: echo "${{ inputs.release_tag }}" > release.txt | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: Continuous Integration | |
author_email: [email protected] | |
message: 'Update release.txt with the latest tag' | |
add: 'release.txt' |