Merging the released patch. #4
Workflow file for this run
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: Package Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
package-release: | |
name: Package Release | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
submodules: recursive | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
- name: Generate artifacts | |
# RELEASE is set to the tag name (vX.X.X) without the first character | |
run: | | |
make -j2 artifacts archives RELEASE=${GITHUB_REF_NAME:1} | |
working-directory: build | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
with: | |
token: ${{ secrets.COMMIT_TOKEN }} | |
draft: true | |
generate_release_notes: true | |
fail_on_unmatched_files: true | |
files: | | |
build/generated/oscal* |