1.12.13 #106
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: Release | |
# TODO: run this only for the oracle/opengrok repository | |
on: | |
push: | |
tags: | |
- '[1-9]+.[0-9]+.[0-9]+' | |
jobs: | |
get_tag: | |
name: Get tag name | |
outputs: | |
tag: ${{ steps.get_tag.outputs.tag }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout master branch | |
uses: actions/checkout@v2 | |
- name: Get the tag name | |
id: get_tag | |
env: | |
OPENGROK_REF: ${{ github.ref }} | |
run: ./dev/ref2tag.sh | |
build: | |
runs-on: ubuntu-latest | |
needs: get_tag | |
steps: | |
- name: Checkout master branch | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Checkout Universal ctags | |
uses: actions/checkout@v2 | |
with: | |
repository: universal-ctags/ctags | |
path: ctags | |
- name: Install pre-requisites | |
run: ./dev/before_install | |
- name: Before build actions | |
run: ./dev/before | |
- name: Build | |
run: ./mvnw -DskipTests=true -Dmaven.javadoc.skip=false -B -V package | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload release tarball | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./distribution/target/opengrok-${{ needs.get_tag.outputs.tag }}.tar.gz | |
asset_name: opengrok-${{ needs.get_tag.outputs.tag }}.tar.gz | |
asset_content_type: application/octet-stream |