Skip to content

Commit

Permalink
Updated GitHub Action file
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenHankiewicz committed Nov 5, 2021
1 parent e96659c commit c5ddf83
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Build and upload to release

on:
push:
branch:
- 'master'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: mvn package --file plugin/pom.xml -DskipTests
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M:%S %Z')"
- name: Create tag name from date
id: tagdate
run: echo "::set-output name=tagdate::$(date +'%Y-%m-%d_%H-%M-%S_%Z')"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tagdate.outputs.tagdate }}
release_name: ${{ steps.date.outputs.date }}
draft: false
prerelease: false
- name: Upload main asset
id: upload-main-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: plugin/module-main/target/plugin_intranda_step_generateIdentifier.jar
asset_name: plugin_intranda_step_generateIdentifier.jar
asset_content_type: application/jar
- name: Upload Config asset
id: upload-config-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: plugin/plugin_intranda_step_generateIdentifier.xml
asset_name: plugin_intranda_step_generateIdentifier.xml
asset_content_type: text/xml

0 comments on commit c5ddf83

Please sign in to comment.