Skip to content

Commit

Permalink
Update github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
sagitta1618 committed Apr 24, 2024
1 parent 1720dc6 commit 325f90f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up environment
run: |
Expand All @@ -34,12 +34,12 @@ jobs:
find ./
cd ..
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: EMagPy-linux.zip
path: ./src/dist/EMagPy-linux.zip

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: EMagPy-linux
path: ./src/dist/EMagPy-linux
Expand All @@ -50,7 +50,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up environment
run: |
Expand All @@ -70,12 +70,12 @@ jobs:
.\build.bat
cd ..
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: EMagPy-windows.zip
path: ./src/dist/EMagPy-windows.zip

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: EMagPy-windows.exe
path: ./src/dist/EMagPy-windows.exe
Expand All @@ -86,7 +86,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up environment
run: |
Expand All @@ -112,12 +112,12 @@ jobs:
cd ../..
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: EMagPy-macos.app
path: ./src/dist/EMagPy-macos.zip

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: EMagPy-macos.dmg
path: ./src/dist/EMagPy-macos.dmg
Expand Down

0 comments on commit 325f90f

Please sign in to comment.