fix: add ability to disallow block management #293
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 | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee | |
with: | |
arguments: build | |
- name: Upload Bundle Artifact | |
uses: actions/[email protected] | |
with: | |
name: beam-bundle | |
path: "./beam-bundle/build/libs" | |
- name: Upload Client Artifact | |
uses: actions/[email protected] | |
with: | |
name: beam-client | |
path: "./beam-client/build/libs" | |
- name: Upload Client App Artifact | |
uses: actions/[email protected] | |
with: | |
name: beam-client-app | |
path: "./beam-client-app/build/libs" | |
- name: Upload Common Artifact | |
uses: actions/[email protected] | |
with: | |
name: beam-common | |
path: "./beam-common/build/libs" | |
- name: Upload Daemon Artifact | |
uses: actions/[email protected] | |
with: | |
name: beam-daemon | |
path: "./beam-daemon/build/libs" | |
- name: Upload UI Artifact | |
uses: actions/[email protected] | |
with: | |
name: beam-ui | |
path: "./beam-ui/build/dist" |