Bump api.adoptium.net from 9b2fd0d
to 563a1ac
#1192
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Marketplace build | |
on: | |
pull_request: | |
branches: [ main, production ] | |
push: | |
branches: [ main, production ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
- name: Build Marketplace | |
uses: ./.github/actions/build-marketplace | |
with: | |
SKIP_TESTS: false | |
- name: Upload yaml schema | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: schema.yaml | |
path: adoptium-marketplace-schema/target/generated/openapi.yaml | |
- name: Upload json schema | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: schema.json | |
path: adoptium-marketplace-schema/target/generated/openapi.json | |
- name: Upload example data | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: example.json | |
path: adoptium-marketplace-schema-tests/src/test/resources/net/adoptium/marketplace/schema/example.json |