Deploy Uffizzi Preview #444
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
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, | |
# software distributed under the License is distributed on an | |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
# KIND, either express or implied. See the License for the | |
# specific language governing permissions and limitations | |
# under the License. | |
name: Deploy Uffizzi Preview | |
on: | |
workflow_run: | |
workflows: | |
- "Build PR Image" | |
types: | |
- completed | |
jobs: | |
cache-compose-file: | |
name: Cache Compose File | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
outputs: | |
compose-file-cache-key: ${{ env.HASH }} | |
pr-number: ${{ env.PR_NUMBER }} | |
steps: | |
- name: 'Download artifacts' | |
# Fetch output (zip archive) from the workflow run that triggered this workflow. | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: context.payload.workflow_run.id, | |
}); | |
let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => { | |
return artifact.name == "preview-spec" | |
})[0]; | |
let download = await github.rest.actions.downloadArtifact({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
artifact_id: matchArtifact.id, | |
archive_format: 'zip', | |
}); | |
let fs = require('fs'); | |
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/preview-spec.zip`, Buffer.from(download.data)); | |
- name: 'Unzip artifact' | |
run: unzip preview-spec.zip | |
- name: Read Event into ENV | |
run: | | |
echo 'EVENT_JSON<<EOF' >> $GITHUB_ENV | |
cat event.json >> $GITHUB_ENV | |
echo 'EOF' >> $GITHUB_ENV | |
- name: Hash Rendered Compose File | |
id: hash | |
# If the previous workflow was triggered by a PR close event, we will not have a compose file artifact. | |
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }} | |
run: echo "HASH=$(md5sum docker-compose.rendered.yml | awk '{ print $1 }')" >> $GITHUB_ENV | |
- name: Cache Rendered Compose File | |
if: ${{ fromJSON(env.EVENT_JSON).action != 'closed' }} | |
uses: actions/cache@v3 | |
with: | |
path: docker-compose.rendered.yml | |
key: ${{ env.HASH }} | |
- name: Read PR Number From Event Object | |
id: pr | |
run: echo "PR_NUMBER=${{ fromJSON(env.EVENT_JSON).number }}" >> $GITHUB_ENV | |
- name: DEBUG - Print Job Outputs | |
if: ${{ runner.debug }} | |
run: | | |
echo "PR number: ${{ env.PR_NUMBER }}" | |
echo "Compose file hash: ${{ env.HASH }}" | |
cat event.json | |
deploy-uffizzi-preview: | |
name: Use Remote Workflow to Preview on Uffizzi | |
needs: | |
- cache-compose-file | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
uses: UffizziCloud/preview-action/.github/workflows/reusable.yaml@v2 | |
with: | |
# If this workflow was triggered by a PR close event, cache-key will be an empty string | |
# and this reusable workflow will delete the preview deployment. | |
compose-file-cache-key: ${{ needs.cache-compose-file.outputs.compose-file-cache-key }} | |
compose-file-cache-path: docker-compose.rendered.yml | |
server: https://app.uffizzi.com | |
pr-number: ${{ needs.cache-compose-file.outputs.pr-number }} | |
permissions: | |
contents: read | |
pull-requests: write | |
id-token: write |