Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Artifacts to version 4 #185

Merged
merged 3 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,19 +169,19 @@ jobs:
make -j2 dist
make -j2 dist-zip
- name: Archive ucblogo.tar.gz
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ucblogo.tar.gz
path: >
*.tar.gz
- name: Archive ucblogo.zip
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ucblogo.zip
path: >
*.zip
- name: Archive ucblogo.pdf
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ucblogo.pdf
path: docs/ucblogo.pdf
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
./configure --enable-gitid --with-wx-config=$WX_CONFIG_PATH
make -j2 ucblogo.dmg
- name: Archive ucblogo.dmg
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ucblogo.dmg
path: ucblogo.dmg
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
run: |
iscc ucblogo.iss
- name: Archive installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ucblogosetup.exe
path: inno/ucblogo*setup.exe
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
awk "/\.\.\./ && ! /Ok$/{exit 1}" logo-unit-test-results.txt
- name: Archive Test Results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Logo Unit Test Results
name: Logo Unit Test Results with ${{ matrix.wx_version }}
path: logo-unit-test-results.txt
Loading