Skip to content

Add LICENSE

Add LICENSE #2

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
inputs:
tag_name:
description: Existing tag to release
required: true
type: string
permissions:
attestations: write
contents: write
id-token: write
jobs:
release:
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@1d798ff015ed0696433e01e2c3ccbb2abefadad7 # v7.7.0
with:
release_files: jvm_image-*.tar.gz
prerelease: false
draft: true
tag_name: ${{ inputs.tag_name || github.ref_name }}
publish:
needs: release
uses: ./.github/workflows/publish.yml
with:
tag_name: ${{ inputs.tag_name || github.ref_name }}
secrets:
publish_token: ${{ secrets.BCR_PUBLISH_TOKEN }}
finalize:
needs: publish
runs-on: ubuntu-latest
steps:
- name: Publish GitHub release
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
with:
tag_name: ${{ inputs.tag_name || github.ref_name }}