Fix sed for EXPERIMENTAL #458
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 | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- '**.md' | |
tags: | |
- 'v*' | |
- 'develop*' | |
jobs: | |
build: | |
# ubuntu-latest is 22.04 - Feb 2023 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 11 | |
- name: Install asciidoctor | |
run: sudo gem install asciidoctor-pdf --pre | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Build OH distributions | |
run: make | |
env: | |
CI: false | |
- name: Create draft release | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: | | |
OpenHospital-*.tar.gz | |
OpenHospital-*.zip | |
body_path: RELEASE_NOTES.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y%m%d')" | |
- name: Rename artifact | |
if: startsWith(github.ref, 'refs/tags/develop') | |
run: | | |
mv OpenHospital-develop-multiarch-client.zip OpenHospital-dev${{ steps.date.outputs.date }}-multiarch-client.zip | |
mv OpenHospital-develop-x86_64-EXPERIMENTAL.zip OpenHospital-dev${{ steps.date.outputs.date }}-x86_64-EXPERIMENTAL.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Delete last dev release | |
if: startsWith(github.ref, 'refs/tags/develop') | |
uses: dev-drprasad/[email protected] | |
with: | |
repo: informatici/openhospital | |
keep_latest: 0 | |
delete_tag_pattern: develop | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create dev release | |
if: startsWith(github.ref, 'refs/tags/develop') | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: Develop Release ${{ steps.date.outputs.date }} | |
prerelease: true | |
files: | | |
OpenHospital-dev${{ steps.date.outputs.date }}-multiarch-client.zip | |
OpenHospital-dev${{ steps.date.outputs.date }}-x86_64-EXPERIMENTAL.zip | |
# OpenHospital-*.tar.gz | |
# OpenHospital-*.zip | |
body: Development pre-release for testers | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |