Synced from the Blueshift Repository #5
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 Ngx Grid Core | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build NGX Grid Core | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: Get previous artifact | |
id: get_previous_artifact | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const artifactName = "ngx-grid-core"; | |
const workflowRuns = await github.rest.actions.listWorkflowRunsForRepo({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
workflow_id: context.workflow, | |
status: "completed", | |
}); | |
for (const run of workflowRuns.data.workflow_runs) { | |
if (run.id === context.runId) continue; // skip current run | |
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: run.id, | |
}); | |
const artifact = artifacts.data.artifacts.find(a => a.name === artifactName); | |
if (artifact) { | |
console.log(`Found artifact (ID: ${artifact.id}) from run (ID: ${run.id})`); | |
return artifact.id; | |
} | |
} | |
return null; | |
- name: Download previous artifact | |
if: steps.get_previous_artifact.outputs.result != 'null' | |
run: | | |
artifact_id=${{ steps.get_previous_artifact.outputs.result }} | |
artifact_url=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-s https://api.github.com/repos/${{ github.repository }}/actions/artifacts/$artifact_id | \ | |
jq -r '.archive_download_url') | |
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -L -o artifact.zip $artifact_url | |
unzip -q artifact.zip -d artifacts | |
echo "Downloaded artifact from run ${{ steps.get_previous_artifact.outputs.result }} to artifacts/" | |
- name: Build Main App | |
run: | | |
npm ci | |
cd projects/ngx-grid-core | |
npx ng build | |
- name: Copy previous package version number | |
run: | | |
version=$(jq -r .version ./artifacts/package.json) | |
echo $version > ./dist/ngx-grid-core/previous_package_version | |
echo "Previous Version Was "$version | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ngx-grid-core | |
path: dist/ngx-grid-core |