Skip to content

Commit

Permalink
Update core.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shiroinekotfs committed Nov 23, 2024
1 parent 77b2a4c commit cf8aff0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,23 @@ jobs:
uses: actions/checkout@v4

- name: Install Zstandard for Extraction
run: sudo apt install -y xz-utils tar
run: sudo apt install -y xz-utils zstd tar

- name: Obtain source code from https://repo.msys2.org/mingw/sources/
run: |
wget https://repo.msys2.org/mingw/sources/mingw-w64-dlfcn-1.4.1-1.src.tar.zst
- name: Extract Source Code into Root Directory
run: tar --strip-components=1 -xf mingw-w64-dlfcn-1.4.1-1.src.tar.zst
run: |
tar --strip-components=1 -xf mingw-w64-dlfcn-1.4.1-1.src.tar.zst
tar --strip-components=1 -xf mingw-w64-dlfcn-1.4.1-1.src.tar
- name: Commit Changes
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
rm mingw-w64-dlfcn-1.4.1-1.src.tar.zst
rm mingw-w64-dlfcn-1.4.1-1.src.tar
rm .gitignore || true
rm -rf .github/workflows/*.yml || true
git add .
Expand Down

0 comments on commit cf8aff0

Please sign in to comment.