.github/workflows/publish.yml #26
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
on: | |
workflow_dispatch: | |
inputs: | |
is-release-build: | |
type: boolean | |
description: Whether the version is a prerelease or full release | |
default: false | |
use-skia-cache: | |
type: boolean | |
description: Use Skia Binary from cache | |
default: false | |
env: | |
IS_RELEASE_BUILD: ${{ inputs.is-release-build }} | |
ALPHASKIA_VERSION_TEMPLATE: "2.3" | |
jobs: | |
build: | |
uses: ./.github/workflows/~reusable-full-build.yml | |
with: | |
use-skia-cache: ${{ inputs.use-skia-cache }} | |
alphaskia-version: "2.3" | |
is-release-build: ${{ inputs.is-release-build }} | |
secrets: inherit | |
dotnet-publish: | |
runs-on: ubuntu-latest | |
needs: [build] | |
env: | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nuke | |
path: build/bin/Debug/publish/ | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nupkgs | |
path: dist/.organize/nupkgs | |
- run: ./build.sh DotNetPublish | |
java-publish: | |
runs-on: ubuntu-latest | |
needs: [build] | |
env: | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
SONATYPE_SIGNING_KEY: ${{ secrets.SONATYPE_SIGNING_KEY }} | |
SONATYPE_SIGNING_KEY_ID: ${{ secrets.SONATYPE_SIGNING_KEY_ID }} | |
SONATYPE_SIGNING_PASSWORD: ${{ secrets.SONATYPE_SIGNING_PASSWORD }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | |
steps: | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nuke | |
path: build/bin/Debug/publish/ | |
- uses: actions/download-artifact@v3 | |
with: | |
# workaround until we know how to upload existing maven packages | |
# https://discuss.gradle.org/t/how-to-push-maven-to-ossrh-from-previous-local-publish/46875 | |
# name: maven | |
# path: dist/.organize/maven | |
path: dist/.organize | |
- run: ./build.sh JavaPublish | |
node-publish: | |
runs-on: ubuntu-latest | |
needs: [build] | |
env: | |
NPMJS_AUTH_TOKEN: ${{ secrets.NPMJS_AUTH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nuke | |
path: build/bin/Debug/publish/ | |
- uses: actions/download-artifact@v3 | |
with: | |
name: nodetars | |
path: dist/.organize/node | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
registry-url: https://registry.npmjs.org/ | |
- run: ./build.sh NodePublish |