Add documentation for database input and output #41
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: Build and pack action | |
on : | |
## Comment the entries below you won't be needing | |
# (and double-check if you repo uses 'main' or 'master') | |
push : | |
branches: | |
- main | |
#paths: | |
#- 'xyz/**' | |
#paths-ignore: | |
#- '.github/**' | |
pull_request: | |
branches: | |
- main | |
#paths: | |
#- 'xyz/**' | |
#paths-ignore: | |
#- '.github/**' | |
#schedule : | |
#- cron: '30 6 * * *' | |
## Uncomment and adapt the following lines to trigger the action upon complete of another | |
## | |
#workflow_run: | |
# workflows: | |
# - 'main.yml' | |
# types: | |
# - completed | |
workflow_dispatch: | |
## Uncomment the following lines if you need to provide specific inputs | |
## | |
# inputs: | |
# inputOne: | |
# description: 'Sample input to use' | |
# required : true | |
# default : 'some value' | |
jobs: | |
buildpack: | |
runs-on: ubuntu-latest | |
permissions: | |
contents : write | |
pull-requests: write | |
steps : | |
## To use an input, if defined, just refer to ${{ github.event.inputs.inputOne }} | |
## This action will cache the OpenAF runtime used by openaf/ojob-action to avoid reinstalling | |
## everytime the action is invoked. It should be cleared manually from time to time in order | |
## to use a more updated runtime. | |
# -------------------------- | |
- name: Cache OpenAF runtime | |
uses: actions/cache@v3 | |
with: | |
key : oaf-t8 | |
path: /tmp/oaf | |
# -------------- | |
- name: Checkout | |
uses: actions/checkout@v4 | |
## Add here other steps | |
## If you used workflow_run you can access ${{ github.event.workflow }} and ${{ github.event.workflow_run.conclusion }} | |
# -------------------- | |
- name: Build and pack | |
uses: openaf/ojob-action@v4 | |
env : | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
ojob: src/build.yaml | |
args: 'op=pack' | |
dist: t8 | |
# --------------------- | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: oafproc-opack | |
path: pack | |
# # ------------- | |
# - name: Checkin | |
# uses: openaf/ojob-action@v4 | |
# env : | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# ojob: ojob.io/git/hub/contentIn | |
# ## Change the following arguments as needed (see https://ojob.io/git/hub/contentIn.md) | |
# args: 'message="Automated check in" branchPrefix="auto/" title="Automated PR" paths="."' | |
# dist: nightly | |