Skip to content

Commit

Permalink
Upgrade CI workflow with latest actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kimci86 committed Feb 5, 2024
1 parent b001fca commit 49a5a8e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure project
run: cmake -S . -B build -DBKCRACK_BUILD_TESTING=ON ${{matrix.platform.cmake-config}}
Expand All @@ -32,9 +32,9 @@ jobs:
run: cmake --build build --config Release --target package

- name: Upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
name: ${{ matrix.platform.name }} package
path: |
build/*.zip
build/*.tar.gz
Expand All @@ -47,10 +47,11 @@ jobs:

steps:
- name: Download packages
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: packages
pattern: "* package"
path: packages
merge-multiple: true

- name: Create release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 49a5a8e

Please sign in to comment.