Skip to content

Commit

Permalink
Update to V4 Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AvocadoMoon committed Jan 30, 2025
1 parent cdf2777 commit fe1213c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/site_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
scp docker/swarm/$VCELL_CONFIG_FILE_NAME ${{ secrets.CD_FULL_USER }}@${VCELL_MANAGER_NODE}:${VCELL_DEPLOY_REMOTE_DIR}
scp docker/swarm/variables ${{ secrets.CD_FULL_USER }}@${VCELL_MANAGER_NODE}:${VCELL_DEPLOY_REMOTE_DIR}/variables_$VCELL_TAG
- name: upload variables
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: variables
path: docker/swarm/variables
Expand All @@ -91,7 +91,7 @@ jobs:
./generate_installers.sh ./${VCELL_CONFIG_FILE_NAME}
- name: upload generated installers
if: ${{ github.event.inputs.server_only != 'true' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: installers
path: docker/swarm/generated_installers
Expand All @@ -107,7 +107,7 @@ jobs:
steps:
- name: download generated installers
if: ${{ github.event.inputs.server_only != 'true' }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: notarize mac installer
if: ${{ github.event.inputs.server_only != 'true' }}
run: |
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
fi
- name: update generated installers
if: ${{ github.event.inputs.server_only != 'true' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: installers
path: installers
Expand All @@ -161,7 +161,7 @@ jobs:
with:
ref: ${{ github.event.inputs.vcell_version }}.${{ github.event.inputs.vcell_build }}
- name: retrieve installers and variables
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: setenv
run: |
for line in $(cat variables/variables); do echo $line >> $GITHUB_ENV; done
Expand Down

0 comments on commit fe1213c

Please sign in to comment.