remove unneeded funtions from publish.sh #15
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
# This is a basic workflow to build a FHIR-IG and deplay the output to the gh-pages branch | |
# and publish on Git Hub Pages everytime it is pushed to the main branch | |
# set up GitHub Page to publish from the "gh-pages" branch like this: | |
# https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-from-a-branch | |
name: Build and Deploy | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main", "master" ] | |
pull_request: | |
branches: [ "main", "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: FHIR IG Action # action from the GitHub Marketplace | |
# uses: Healthedata1/[email protected] | |
uses: qligier/fhir-ig-action@feature_memory_debug | |
with: | |
java-flags: "-Xmx4G" | |
sushi: "3.2.0" | |
- name: Deploy to GitHub Pages # action from the GitHub Marketplace | |
uses: JamesIves/[email protected] | |
with: | |
folder: output # deploy from the prior step | |
# then github will deploy to the GH Page using the page-build-deployment action bot |