Skip to content

Create Quantic Package #815

Create Quantic Package

Create Quantic Package #815

name: Create Quantic Package
on:
workflow_dispatch:
schedule:
- cron: '0 22 * * *'
defaults:
run:
shell: bash
jobs:
create-and-promote-quantic-package:
name: Create Quantic Package
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Check Out Repository
uses: actions/checkout@v4
- name: Create cache file
run: |
mkdir check-SHA
echo ${{ github.sha }} > github-sha.txt
- name: Check SHA
id: check_sha
uses: actions/cache@v3
with:
path: check-SHA
key: check-SHA-${{ github.sha }}
- name: Cancel current workflow run if no changes made
if: steps.check_sha.outputs.cache-hit == 'true'
uses: actions/github-script@v6
with:
script: |
github.actions.cancelWorkflowRun({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.runId
})
- name: Setup
uses: ./.github/actions/build
- name: Create package version
working-directory: ./packages/quantic
run: |
echo "${{ secrets.SFDX_AUTH_PACKAGE_JWT_KEY }}" > server.key
npx --no-install ts-node scripts/build/create-package.ts --remove-translations --ci
rm server.key
env:
SFDX_AUTH_JWT_USERNAME: [email protected]
SFDX_AUTH_JWT_KEY: server.key
SFDX_AUTH_CLIENT_ID: ${{ secrets.SFDX_AUTH_PACKAGE_CLIENT_ID }}