-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4c0ae3
commit c536d92
Showing
1 changed file
with
62 additions
and
62 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Push ephmereral env image | ||
name: Push ephemeral env image | ||
|
||
on: | ||
workflow_run: | ||
|
@@ -17,14 +17,14 @@ jobs: | |
id: check | ||
shell: bash | ||
run: | | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
if [ -n "${{ (secrets.AWS_ACCESS_KEY_ID != '' && | ||
secrets.AWS_ACCESS_KEY_ID != '' && | ||
secrets.AWS_SECRET_ACCESS_KEY != '' && | ||
secrets.AWS_SECRET_ACCESS_KEY != '') || '' }}" ]; then | ||
echo "has-secrets=1" >> "$GITHUB_OUTPUT" | ||
fi | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
if [ -n "${{ (secrets.AWS_ACCESS_KEY_ID != '' && | ||
secrets.AWS_ACCESS_KEY_ID != '' && | ||
secrets.AWS_SECRET_ACCESS_KEY != '' && | ||
secrets.AWS_SECRET_ACCESS_KEY != '') || '' }}" ]; then | ||
echo "has-secrets=1" >> "$GITHUB_OUTPUT" | ||
fi | ||
docker_ephemeral_env: | ||
needs: config | ||
|
@@ -33,66 +33,66 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: 'Download artifact' | ||
uses: actions/[email protected] | ||
with: | ||
script: | | ||
const artifacts = await github.actions.listWorkflowRunArtifacts({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
run_id: ${{ github.event.workflow_run.id }}, | ||
}); | ||
- name: "Download artifact" | ||
uses: actions/[email protected] | ||
with: | ||
script: | | ||
const artifacts = await github.actions.listWorkflowRunArtifacts({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
run_id: ${{ github.event.workflow_run.id }}, | ||
}); | ||
core.info('*** artifacts') | ||
core.info(JSON.stringify(artifacts)) | ||
core.info('*** artifacts') | ||
core.info(JSON.stringify(artifacts)) | ||
const matchArtifact = artifacts.data.artifacts.filter((artifact) => { | ||
return artifact.name == "build" | ||
})[0]; | ||
if(!matchArtifact) return core.setFailed("Build artifacts not found") | ||
const matchArtifact = artifacts.data.artifacts.filter((artifact) => { | ||
return artifact.name == "build" | ||
})[0]; | ||
if(!matchArtifact) return core.setFailed("Build artifacts not found") | ||
const download = await github.actions.downloadArtifact({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
artifact_id: matchArtifact.id, | ||
archive_format: 'zip', | ||
}); | ||
var fs = require('fs'); | ||
fs.writeFileSync('${{github.workspace}}/build.zip', Buffer.from(download.data)); | ||
const download = await github.actions.downloadArtifact({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
artifact_id: matchArtifact.id, | ||
archive_format: 'zip', | ||
}); | ||
var fs = require('fs'); | ||
fs.writeFileSync('${{github.workspace}}/build.zip', Buffer.from(download.data)); | ||
- run: unzip build.zip | ||
- run: unzip build.zip | ||
|
||
- name: Display downloaded files (debug) | ||
run: ls -la | ||
- name: Display downloaded files (debug) | ||
run: ls -la | ||
|
||
- name: Get SHA | ||
id: get-sha | ||
run: echo "::set-output name=sha::$(cat ./SHA)" | ||
- name: Get SHA | ||
id: get-sha | ||
run: echo "::set-output name=sha::$(cat ./SHA)" | ||
|
||
- name: Get PR | ||
id: get-pr | ||
run: echo "::set-output name=num::$(cat ./PR-NUM)" | ||
- name: Get PR | ||
id: get-pr | ||
run: echo "::set-output name=num::$(cat ./PR-NUM)" | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-west-2 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-west-2 | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
|
||
- name: Load, tag and push image to ECR | ||
id: push-image | ||
env: | ||
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | ||
ECR_REPOSITORY: superset-ci | ||
SHA: ${{ steps.get-sha.outputs.sha }} | ||
IMAGE_TAG: pr-${{ steps.get-pr.outputs.num }} | ||
run: | | ||
docker load < $SHA.tar.gz | ||
docker tag $SHA $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | ||
docker tag $SHA $ECR_REGISTRY/$ECR_REPOSITORY:$SHA | ||
docker push -a $ECR_REGISTRY/$ECR_REPOSITORY | ||
- name: Load, tag and push image to ECR | ||
id: push-image | ||
env: | ||
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | ||
ECR_REPOSITORY: superset-ci | ||
SHA: ${{ steps.get-sha.outputs.sha }} | ||
IMAGE_TAG: pr-${{ steps.get-pr.outputs.num }} | ||
run: | | ||
docker load < $SHA.tar.gz | ||
docker tag $SHA $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | ||
docker tag $SHA $ECR_REGISTRY/$ECR_REPOSITORY:$SHA | ||
docker push -a $ECR_REGISTRY/$ECR_REPOSITORY |