fix(deps): update github.com/sapcc/go-bits digest to 6eb1626 #798
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-swagger-ghpages | |
on: | |
push: | |
tags: | |
- v* | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Copy swagger.yml | |
run: cp swagger.yml /tmp | |
- uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
- name: Copy back swagger.yml | |
run: cp /tmp/swagger.yml . | |
- name: Commit report | |
run: | | |
git config --global user.name 'GitHub Pages Bot' | |
git config --global user.email '[email protected]' | |
git commit -am "Update swagger.yml" || true | |
git push |