Release Droid - Upload GitHub Release Assets #19
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: Release Droid - Upload GitHub Release Assets | |
on: | |
workflow_dispatch: | |
inputs: | |
upload_url: | |
description: "Assets upload URL" | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: 11 | |
cache: "maven" | |
- name: Build with Maven skipping tests | |
run: mvn --batch-mode clean verify -DskipTests | |
- name: Generate sha256sum files | |
run: | | |
cd target | |
find . -maxdepth 1 -name \*.jar -exec bash -c 'sha256sum {} > {}.sha256' \; | |
- name: Generate sha256sum files for extension | |
run: | | |
cd extension/dist/ | |
sha256sum cloud-storage-extension.js > cloud-storage-extension.js.sha256 | |
- name: Upload assets to the GitHub release draft | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.inputs.upload_url }} | |
asset_path: target/*.jar | |
- name: Upload extension | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.inputs.upload_url }} | |
asset_path: extension/dist/cloud-storage-extension.js* | |
- name: Upload sha256sum files | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.inputs.upload_url }} | |
asset_path: target/*.sha256 | |
- name: Upload error-code-report | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ github.event.inputs.upload_url }} | |
asset_path: target/error_code_report.json |