Correct inputs usage #480
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: hdfview 1_14 daily build | |
# Triggered on pull request or on demand | |
on: | |
workflow_dispatch: | |
inputs: | |
use_ignore: | |
description: 'Ignore has_changes check' | |
type: string | |
required: false | |
default: check | |
pull_request: | |
branches: [ "hdfview-3-1_14" ] | |
permissions: | |
contents: read | |
jobs: | |
get-base-names: | |
runs-on: ubuntu-latest | |
outputs: | |
hdf4-name: ${{ steps.gethdf4base.outputs.HDF4_NAME_BASE }} | |
hdf5-name: ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }} | |
hdfview-name: ${{ steps.gethdfviewbase.outputs.HDFVIEW_NAME_BASE }} | |
run-ignore: ${{ steps.getinputs.outputs.INPUTS_IGNORE }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Get hdfview release base name | |
uses: dsaltares/fetch-gh-release-asset@master | |
with: | |
version: 'tags/HDFView-3.3.99' | |
file: 'last-file.txt' | |
continue-on-error: true | |
- name: Read base-name file | |
id: gethdfviewbase | |
run: echo "HDFVIEW_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT | |
- run: echo "hdfview base name is ${{ steps.gethdfviewbase.outputs.HDFVIEW_NAME_BASE }}." | |
- name: Get hdf4 release base name | |
uses: dsaltares/fetch-gh-release-asset@master | |
with: | |
repo: 'HDFGroup/hdf4' | |
version: 'tags/snapshot' | |
file: 'last-file.txt' | |
- name: Read base-name file | |
id: gethdf4base | |
run: echo "HDF4_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT | |
- name: Get hdf5 release base name | |
uses: dsaltares/fetch-gh-release-asset@master | |
with: | |
repo: 'HDFGroup/hdf5' | |
version: 'tags/snapshot-1.14' | |
file: 'last-file.txt' | |
- name: Read base-name file | |
id: gethdf5base | |
run: echo "HDF5_NAME_BASE=$(cat last-file.txt)" >> $GITHUB_OUTPUT | |
- run: | | |
echo "hdf4 base name is ${{ steps.gethdf4base.outputs.HDF4_NAME_BASE }}." | |
echo "hdf5 base name is ${{ steps.gethdf5base.outputs.HDF5_NAME_BASE }}." | |
- name: Read inputs | |
id: getinputs | |
run: | | |
echo "INPUTS_IGNORE=${{ inputs.use_ignore }}" >> $GITHUB_OUTPUT | |
- run: echo "use_ignore is ${{ steps.getinputs.outputs.INPUTS_IGNORE }}." | |
call-workflow-tarball: | |
needs: get-base-names | |
uses: ./.github/workflows/tarball.yml | |
with: | |
use_ignore: ${{ needs.get-base-names.outputs.run-ignore }} | |
use_tag: snapshot | |
use_environ: snapshots | |
call-workflow-ant: | |
needs: [get-base-names, call-workflow-tarball] | |
uses: ./.github/workflows/ant.yml | |
with: | |
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }} | |
use_hdf: ${{ needs.get-base-names.outputs.hdf4-name }} | |
use_hdf5: ${{ needs.get-base-names.outputs.hdf5-name }} | |
name_hdf5: ${{ needs.get-base-names.outputs.hdf5-name }} | |
use_environ: snapshots | |
secrets: | |
APPLE_CERTS_BASE64: ${{ secrets.APPLE_CERTS_BASE64 }} | |
APPLE_CERTS_BASE64_PASSWD: ${{ secrets.APPLE_CERTS_BASE64_PASSWD }} | |
KEYCHAIN_PASSWD: ${{ secrets.KEYCHAIN_PASSWD }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
AZURE_ENDPOINT: ${{ secrets.AZURE_ENDPOINT }} | |
AZURE_CODE_SIGNING_NAME: ${{ secrets.AZURE_CODE_SIGNING_NAME }} | |
AZURE_CERT_PROFILE_NAME: ${{ secrets.AZURE_CERT_PROFILE_NAME }} | |
if: ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-base-names.outputs.run-ignore == 'ignore')) }} | |
call-workflow-ant-app: | |
needs: [get-base-names, call-workflow-tarball] | |
uses: ./.github/workflows/ant-app.yml | |
with: | |
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }} | |
use_hdf: ${{ needs.get-base-names.outputs.hdf4-name }} | |
use_hdf5: ${{ needs.get-base-names.outputs.hdf5-name }} | |
name_hdf5: ${{ needs.get-base-names.outputs.hdf5-name }} | |
use_environ: snapshots | |
secrets: | |
APPLE_CERTS_BASE64: ${{ secrets.APPLE_CERTS_BASE64 }} | |
APPLE_CERTS_BASE64_PASSWD: ${{ secrets.APPLE_CERTS_BASE64_PASSWD }} | |
KEYCHAIN_PASSWD: ${{ secrets.KEYCHAIN_PASSWD }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
AZURE_ENDPOINT: ${{ secrets.AZURE_ENDPOINT }} | |
AZURE_CODE_SIGNING_NAME: ${{ secrets.AZURE_CODE_SIGNING_NAME }} | |
AZURE_CERT_PROFILE_NAME: ${{ secrets.AZURE_CERT_PROFILE_NAME }} | |
if: ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-base-names.outputs.run-ignore == 'ignore')) }} | |
call-workflow-release: | |
needs: [get-base-names, call-workflow-tarball, call-workflow-ant, call-workflow-ant-app] | |
permissions: | |
contents: write # In order to allow tag creation | |
uses: ./.github/workflows/release-files.yml | |
with: | |
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }} | |
file_branch: ${{ needs.call-workflow-tarball.outputs.file_branch }} | |
file_sha: ${{ needs.call-workflow-tarball.outputs.file_sha }} | |
use_tag: HDFView-3.3.99 | |
use_environ: snapshots | |
if: ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-base-names.outputs.run-ignore == 'ignore')) }} | |
call-workflow-remove: | |
needs: [get-base-names, call-workflow-tarball, call-workflow-ant, call-workflow-ant-app, call-workflow-release] | |
permissions: | |
contents: write # In order to allow file deletion | |
uses: ./.github/workflows/remove-files.yml | |
with: | |
file_base: ${{ needs.get-base-names.outputs.hdfview-name }} | |
use_tag: HDFView-3.3.99 | |
use_environ: snapshots | |
if: ${{ ((needs.call-workflow-tarball.outputs.has_changes == 'true') || (needs.get-base-names.outputs.run-ignore == 'ignore')) && (needs.get-base-names.outputs.hdfview-name != needs.call-workflow-tarball.outputs.file_base) }} | |