Last active
October 24, 2025 10:13
-
-
Save xSAVIKx/eeb24ff793d2d47b4f2f023ba554aee4 to your computer and use it in GitHub Desktop.
This gist is auto-updated using https://github.com/xSAVIKx/gist-uploader-action action
This file contains hidden or 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 Gist | |
| on: | |
| release: | |
| types: | |
| - published | |
| workflow_dispatch: | |
| jobs: | |
| update-gist: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| url: ${{ steps.gist.outputs.url }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Update gist from file | |
| id: gist | |
| uses: xSAVIKx/[email protected] # pin to a released version | |
| with: | |
| token: ${{ secrets.GIST_TOKEN }} | |
| gist_id: eeb24ff793d2d47b4f2f023ba554aee4 # ID of the target gist | |
| file_path: .github/workflows/update-gist.yml # path in your repo to upload | |
| # Optional inputs: | |
| gist_description: "This gist is auto-updated using https://github.com/xSAVIKx/gist-uploader-action action" | |
| gist_file_name: "update-gist.yml" # defaults to the basename of file_path | |
| - name: Print gist URL | |
| run: | | |
| echo "Gist URL: ${{ steps.gist.outputs.url }}" >> $GITHUB_STEP_SUMMARY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment