Repository #88
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: Repository | |
on: | |
workflow_run: | |
workflows: | |
- BuildPackage | |
types: | |
- completed | |
jobs: | |
pkgbuild: | |
name: "MSYS2 repository" | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_USER: dciabrin | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install MSYS2 | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: UCRT64 | |
update: true | |
install: git mingw-w64-ucrt-x86_64-jq | |
- name: Publish new package version | |
run: | | |
git config --global user.name 'CI build bot' | |
git config --global user.email '<>' | |
git config --global http.postBuffer 33554432 | |
.ci/rebuild-msys2-repository.sh -u $GH_USER && cd repository && git push -f |