gen emu config workflow packaging dir (dammit!)

This commit is contained in:
otavepto 2023-12-28 02:15:39 +02:00
parent dfc55067e2
commit 851142071d
2 changed files with 6 additions and 6 deletions

View File

@ -18,8 +18,8 @@ permissions:
env: env:
ARTIFACT_NAME: "generate_emu_config-linux-${{ github.sha }}" ARTIFACT_NAME: "generate_emu_config-linux-${{ github.sha }}"
SCRIPT_BASE_DIR: "${{ github.workspace }}/tools/generate_emu_config" SCRIPT_BASE_DIR: "tools/generate_emu_config"
PACKAGE_BASE_DIR: "${{ github.workspace }}/tools/generate_emu_config/bin/package" PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/package/linux"
jobs: jobs:
build: build:
@ -55,7 +55,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: "${{ env.ARTIFACT_NAME }}" name: "${{ env.ARTIFACT_NAME }}"
path: "${{ env.PACKAGE_BASE_DIR }}/linux/" path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: 'error' if-no-files-found: 'error'
compression-level: 9 compression-level: 9
retention-days: 1 retention-days: 1

View File

@ -18,8 +18,8 @@ permissions:
env: env:
ARTIFACT_NAME: "generate_emu_config-win-${{ github.sha }}" ARTIFACT_NAME: "generate_emu_config-win-${{ github.sha }}"
SCRIPT_BASE_DIR: "${{ github.workspace }}/tools/generate_emu_config" SCRIPT_BASE_DIR: "tools/generate_emu_config"
PACKAGE_BASE_DIR: "${{ github.workspace }}/tools/generate_emu_config/bin/package" PACKAGE_BASE_DIR: "tools/generate_emu_config/bin/package/win"
THIRD_PARTY_BASE_DIR: 'third-party' THIRD_PARTY_BASE_DIR: 'third-party'
@ -62,7 +62,7 @@ jobs:
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: "${{ env.ARTIFACT_NAME }}" name: "${{ env.ARTIFACT_NAME }}"
path: "${{ env.PACKAGE_BASE_DIR }}/win/" path: "${{ env.PACKAGE_BASE_DIR }}/"
if-no-files-found: 'error' if-no-files-found: 'error'
compression-level: 9 compression-level: 9
retention-days: 1 retention-days: 1