CI: Use correct artifact download folder when packaging #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Unstable (main branch) | |
on: | |
push: | |
branches: | |
- 'main' | |
# Make sure jobs cannot overlap. | |
concurrency: | |
group: build-unstable-main | |
cancel-in-progress: true | |
jobs: | |
# First, build the extension and upload the artifacts. | |
build-linux: | |
name: Compile and publish Linux version | |
uses: ./.github/workflows/extension-build-linux.yml | |
build-macos: | |
name: Compile and publish macOS version | |
uses: ./.github/workflows/extension-build-macos.yml | |
build-windows: | |
name: Compile and publish Windows version | |
uses: ./.github/workflows/extension-build-windows.yml | |
build-web: | |
name: Compile and publish Web version | |
uses: ./.github/workflows/extension-build-web.yml | |
build-android: | |
name: Compile and publish Android version | |
uses: ./.github/workflows/extension-build-android.yml | |
# Then, use the artifacts to prepare the example project and publish the build. | |
publish-all: | |
name: Package and publish the extension | |
needs: [ build-linux, build-macos, build-windows, build-web, build-android ] | |
uses: ./.github/workflows/extension-publish-all.yml | |
build-example-project: | |
name: Export and publish the example project | |
needs: [ build-linux, build-macos, build-windows, build-web, build-android ] | |
uses: ./.github/workflows/example-build-project.yml |