Build Stable #23
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 Stable | |
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: | |
build-stable: | |
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-nightly | |
path: /tmp/oaf | |
# -------------- | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# ----------------- | |
#- name: Set up QEMU | |
# uses: docker/setup-qemu-action@v2 | |
## Add here other steps | |
## If you used workflow_run you can access ${{ github.event.workflow }} and ${{ github.event.workflow_run.conclusion }} | |
- name: Build stable | |
uses: openaf/ojob-action@v4 | |
env : | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
ojob: buildStable.yaml | |
dist: nightly | |
# -------------------- | |
- name: Prepare output | |
run : | | |
mkdir output | |
mv oaf-* output | |
# ----------------------- | |
- name: Copy build result | |
uses: openaf/ojob-action@v4 | |
env : | |
OS_OAFSH: ${{ secrets.OS_OAFSH }} | |
with: | |
dist : nightly | |
ojob : 'ojob.io/s3/ops' | |
args : 'op=mput bucket=oafsh remote="" local="output/*" secEnv=true secKey=OS_OAFSH' | |
# def : | | |
# ojob: | |
# opacks: | |
# - S3 | |
# include: | |
# - s3.yaml | |
# todo: | |
# - Copy build result | |
# jobs: | |
# - name: Copy build result | |
# to : | |
# - (secget) : OS_OAFSH | |
# ((secEnv)): true | |
# - name: S3 Sync folder | |
# args: | |
# squash : remote | |
# localPath: output | |
# bucket : oafsh | |
# execute : true | |