1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: delay static asset generation (#3848)

## About the changes
Delay static asset generation to speed up the CI/CD pipeline.
Next, we should add a validation step before deployment to validate that
the static assets were properly published
This commit is contained in:
Gastón Fournier 2023-05-23 23:27:44 +02:00 committed by GitHub
parent c0bcc50b28
commit 08cf5e3041
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,26 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Trigger sync
uses: actions/github-script@v6
with:
github-token: ${{ secrets.UNLEASH_CI_BUILDER_GITHUB_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'ivarconr',
repo: 'unleash-enterprise',
workflow_id: 'cicd.yaml',
ref: 'master',
inputs: {
repository: "${{ github.repository }}",
commit: "${{ github.event.head_commit.id }}",
actor: "${{ github.actor }}",
message: ${{ toJSON(github.event.head_commit.message) }},
}
})
# build static assets after triggering the sync workflow.
# Adding a validation step in the sync workflow will ensure that the static assets are built before deployment.
- name: Build static assets - name: Build static assets
run: | run: |
cd frontend cd frontend
@ -40,20 +60,3 @@ jobs:
- name: Publish static assets to S3 - name: Publish static assets to S3
run: | run: |
aws s3 cp frontend/build s3://getunleash-static/unleash/commits/${{ steps.get_commit_hash.outputs.COMMIT_HASH }} --recursive aws s3 cp frontend/build s3://getunleash-static/unleash/commits/${{ steps.get_commit_hash.outputs.COMMIT_HASH }} --recursive
- name: Trigger sync
uses: actions/github-script@v6
with:
github-token: ${{ secrets.UNLEASH_CI_BUILDER_GITHUB_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'ivarconr',
repo: 'unleash-enterprise',
workflow_id: 'cicd.yaml',
ref: 'master',
inputs: {
repository: "${{ github.repository }}",
commit: "${{ github.event.head_commit.id }}",
actor: "${{ github.actor }}",
message: ${{ toJSON(github.event.head_commit.message) }},
}
})