Skip to content

Commit

Permalink
Merge pull request #196 from AHOHNMYC/update-ci-actions
Browse files Browse the repository at this point in the history
[CI] Cutting edge actions
  • Loading branch information
MrGlockenspiel authored Feb 20, 2024
2 parents 7699cd9 + 3941a88 commit cf034f2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: speedup dpkg
run: sudo sh -c "echo 'force-unsafe-io' > /etc/dpkg/dpkg.cfg.d/force-unsafe-io"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/obs-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Runs a set of commands using the runners shell
- name: Run a multi-line script
Expand Down
18 changes: 14 additions & 4 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- {chain: mingw64, cc: gcc}
- {chain: clang64, cc: clang}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.chain}}
Expand All @@ -26,8 +26,18 @@ jobs:
export BINARY=activate-windows-${{matrix.chain}}.exe
make
- name: Upload .exe
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: activate-windows-${{matrix.chain}}
path: activate-windows-${{matrix.chain}}.exe
merge:
runs-on: ubuntu-latest
needs: build
steps:
- name: Merge *.exe
uses: actions/upload-artifact/merge@v4
with:
name: activate-windows.exe
path: |
activate-windows-*.exe
pattern: activate-windows-*
delete-merged: true
compression-level: 9

0 comments on commit cf034f2

Please sign in to comment.