Skip to content

Commit

Permalink
Upgraded CI/CD GitHub artifact actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacShelton committed Sep 8, 2024
1 parent e480dbc commit 3cbb0b0
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/remoteBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,24 +166,24 @@ jobs:
files: res
outPath: res.tar.gz
- name: Upload Build Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}-archive
path: build-${{ matrix.os }}.tar.gz
- name: Upload E2E Testing Infrastructure Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
name: e2e-archive
path: e2e.tar.gz
- name: Upload Resources Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'windows-latest' }}
with:
name: res
path: res.tar.gz
- name: Upload LICENSE Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
name: LICENSE
Expand All @@ -202,11 +202,11 @@ jobs:
with:
python-version: '3.x'
- name: Download Build Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: build-${{ matrix.os }}-archive
- name: Download E2E Testing Infrastructure Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: e2e-archive
- name: Unpack 1/2
Expand Down Expand Up @@ -260,15 +260,15 @@ jobs:
echo 'longVersion=nightly' >> $GITHUB_ENV
echo 'alternativeBinaryName=adept-nightly' >> $GITHUB_ENV
- name: Download Build Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: build-windows-latest-archive
- name: Download Support Libraries Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: res
- name: Download LICENSE Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: LICENSE
- name: Unpack Build Artifact
Expand Down Expand Up @@ -326,12 +326,12 @@ jobs:
mv stage adept-${{env.shortVersion}}-standalone
powershell Compress-Archive adept-${{env.shortVersion}}-standalone Adept-${{env.shortVersion}}-standalone-x86_64-Windows.zip
- name: Upload Windows Installer Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
with:
name: windows-installer
path: AdeptWindowsInstaller/Adept-${{env.shortVersion}}-installer.exe
- name: Upload Windows Standalone Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
with:
name: windows-standalone
path: Adept-${{env.shortVersion}}-standalone-x86_64-Windows.zip
Expand Down Expand Up @@ -361,7 +361,7 @@ jobs:
with:
python-version: '3.x'
- name: Download Build Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: build-macos-latest-archive
- name: Unpack
Expand Down Expand Up @@ -415,12 +415,12 @@ jobs:
mv stage/application adept-${{env.shortVersion}}-standalone
zip -vr Adept-${{env.shortVersion}}-standalone-arm64-MacOS.zip adept-${{env.shortVersion}}-standalone/ -x "*.DS_Store"
- name: Upload MacOS Installer Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
with:
name: macos-installer
path: macOS-installer-builder/build/Adept-${{env.shortVersion}}-installer.pkg
- name: Upload MacOS Standalone Artifact
uses: actions/upload-artifact@v4.1.7
uses: actions/upload-artifact@v4
with:
name: macos-standalone
path: macOS-installer-builder/Adept-${{env.shortVersion}}-standalone-arm64-MacOS.zip
Expand Down Expand Up @@ -451,15 +451,15 @@ jobs:
echo 'releaseName=Nightly' >> $GITHUB_ENV
echo 'releaseTagName=Nightly' >> $GITHUB_ENV
- name: Download Build Artifact (windows-latest)
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: build-windows-latest-archive
- name: Download Build Artifact (macos-latest)
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: build-macos-latest-archive
- name: Download Build Artifact (ubuntu-latest)
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: build-ubuntu-latest-archive
- name: Checkout Adept Default Configuration
Expand All @@ -473,19 +473,19 @@ jobs:
repository: 'AdeptLanguage/AdeptImport'
path: 'AdeptImport'
- name: Download Windows Installer Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: windows-installer
- name: Download Windows Standalone Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: windows-standalone
- name: Download macOS Installer Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: macos-installer
- name: Download macOS Standalone Artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: macos-standalone
- name: Pre-Unpack
Expand Down

0 comments on commit 3cbb0b0

Please sign in to comment.