Skip to content

Feature/mvd 5924

Feature/mvd 5924 #245

Workflow file for this run

name: Build Core
on:
push:
branches:
- v2.x/staging
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
inputs:
ZLUX_APP_MANAGER:
description: 'zlux-app-manager PR number'
required: false
ZLUX_APP_SERVER:
description: 'zlux-app-server PR number'
required: false
ZLUX_BUILD:
description: 'zlux-build PR number'
required: false
ZLUX_PLATFORM:
description: 'zlux-platform PR number'
required: false
ZLUX_SERVER_FRAMEWORK:
description: 'zlux-server-framework PR number'
required: false
ZLUX_SHARED:
description: 'zlux-shared PR number'
required: false
DEFAULT_BRANCH:
description: 'please enter the default branch you would like to build with, default will be v2.x/staging'
required: false
default: 'v2.x/staging'
jobs:
check-permission:
runs-on: ubuntu-latest
steps:
# this action will fail the whole workflow if permission check fails
- name: check permission
uses: zowe-actions/shared-actions/permission-check@main
with:
user: ${{ github.actor }}
github-repo: ${{ github.repository }}
github-token: ${{ secrets.GITHUB_TOKEN }}
check_changelog:
runs-on: ubuntu-latest
outputs:
was_updated: ${{ steps.check.outputs.was_updated }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Check if CHANGELOG.md was updated
id: check
run: |
if git diff --name-only HEAD^ HEAD | grep 'CHANGELOG.md'; then
echo "CHANGELOG.md was updated in the last commit."
echo "::set-output name=was_updated::true"
else
echo "CHANGELOG.md was NOT updated in the last commit."
echo "::set-output name=was_updated::false"
fi
- name: Check if CHANGELOG is Updated and if not updated pass to update_changelog
if: ${{ steps.check.outputs.was_updated != 'true' }}
run: |
echo "CHANGELOG.md not updated, please update CHANGELOG.md with the changes made in the pull request"
- name: Remove copy-repo
if: always()
run: rm -r copy-repo
update_changelog:

Check failure on line 77 in .github/workflows/build-core.yml

View workflow run for this annotation

GitHub Actions / Build Core

Invalid workflow file

The workflow is not valid. .github/workflows/build-core.yml (Line: 77, Col: 5): Unexpected value 'update_changelog'
needs: check_changelog
runs-on: ubuntu-latest
if: ${{ needs.check_changelog.outputs.was_updated == 'false' }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Get commit message
run: echo "COMMIT_MESSAGE=$(git log --format=%B -n 1)" >> $GITHUB_ENV
- name: Append commit to Changelog
run: |
echo "CHANGELOG: $COMMIT_MESSAGE" >> CHANGELOG.md
echo "${{ steps.check-changelog.outputs.was_updated}}"
- name: Commit and push if it changed
run: |
git diff
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git commit -am "Update Changelog" -m "$COMMIT_MESSAGE" && echo ::set-output name=push::true || echo "No changes to commit"
git push origin || echo "No changes to push"
build:
runs-on: ubuntu-latest
needs: check-permission
steps:
- name: '[Prep 1] Cache node modules'
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: |
~/.npm
~/.nvm/.cache
~/.nvm/versions
key: ${{ runner.os }}-build-cache-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-cache-node-modules-
- name: '[Prep 2] Setup Node'
uses: actions/setup-node@v2
with:
node-version: 16.15.0
- name: '[Prep 3] Setup jFrog CLI'
uses: jfrog/setup-jfrog-cli@v2
env:
JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_TOKEN }}
- name: '[Prep 4] prepare workflow'
uses: zowe-actions/zlux-builds/core/[email protected]/main
with:
github-user: ${{ secrets.ZOWE_ROBOT_USER }}
github-password: ${{ secrets.ZOWE_ROBOT_TOKEN }}
github-email: ${{ secrets.ZOWE_ROBOT_EMAIL }}
github-branch: ${{ github.event.inputs.BRANCH_NAME }}
default-base: ${{ github.event.inputs.DEFAULT_BRANCH }}
- name: '[Prep 5] build'
uses: zowe-actions/zlux-builds/core/[email protected]/main
with:
zlux-app-manager: ${{ github.event.inputs.ZLUX_APP_MANAGER }}
zlux-app-server: ${{ github.event.inputs.ZLUX_APP_SERVER }}
zlux-build: ${{ github.event.inputs.ZLUX_BUILD }}
zlux-platform: ${{ github.event.inputs.ZLUX_PLATFORM }}
zlux-server-framework: ${{ github.event.inputs.ZLUX_SERVER_FRAMEWORK }}
zlux-shared: ${{ github.event.inputs.ZLUX_SHARED }}
- name: '[Prep 6] packaging'
uses: zowe-actions/zlux-builds/core/[email protected]/main
with:
pax-ssh-username: ${{ secrets.SSH_MARIST_USERNAME }}
pax-ssh-password: ${{ secrets.SSH_MARIST_RACF_PASSWORD }}
pax-name: zlux-core
- name: '[Prep 7] deploy'
uses: zowe-actions/zlux-builds/core/[email protected]/main