2021-08-09 19:35:36 +02:00
|
|
|
name: Upload Preview Build to Netlify
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: ["Layered Preview Build"]
|
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: >
|
|
|
|
${{ github.event.workflow_run.conclusion == 'success' }}
|
|
|
|
steps:
|
|
|
|
# There's a 'download artifact' action but it hasn't been updated for the
|
|
|
|
# workflow_run action (https://github.com/actions/download-artifact/issues/60)
|
|
|
|
# so instead we get this mess:
|
|
|
|
- name: 'Download artifact'
|
|
|
|
uses: actions/github-script@v3.1.0
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
var artifacts = await github.actions.listWorkflowRunArtifacts({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
run_id: ${{github.event.workflow_run.id }},
|
|
|
|
});
|
|
|
|
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
|
|
|
|
return artifact.name == "previewbuild"
|
|
|
|
})[0];
|
|
|
|
var 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}}/previewbuild.zip', Buffer.from(download.data));
|
2021-08-11 20:25:17 +02:00
|
|
|
- name: Extract Artifacts
|
2022-01-18 12:01:25 +01:00
|
|
|
run: unzip -d webapp previewbuild.zip && rm previewbuild.zip
|
2021-08-09 19:35:36 +02:00
|
|
|
- name: Deploy to Netlify
|
2021-08-09 21:16:54 +02:00
|
|
|
id: netlify
|
2021-08-09 19:35:36 +02:00
|
|
|
uses: nwtgck/actions-netlify@v1.2
|
|
|
|
with:
|
2021-08-11 20:41:37 +02:00
|
|
|
publish-dir: webapp
|
2021-08-09 19:35:36 +02:00
|
|
|
deploy-message: "Deploy from GitHub Actions"
|
2021-08-09 21:16:54 +02:00
|
|
|
# These don't work because we're in workflow_run
|
|
|
|
enable-pull-request-comment: false
|
2021-08-09 19:35:36 +02:00
|
|
|
enable-commit-comment: false
|
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
|
|
timeout-minutes: 1
|
2021-08-11 22:10:22 +02:00
|
|
|
- name: Edit PR Description
|
2021-12-09 09:12:59 +01:00
|
|
|
uses: Beakyn/gha-comment-pull-request@2167a7aee24f9e61ce76a23039f322e49a990409
|
2021-08-11 22:10:22 +02:00
|
|
|
env:
|
2021-08-09 21:16:54 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-08-11 22:10:22 +02:00
|
|
|
with:
|
2022-01-18 12:01:25 +01:00
|
|
|
pull-request-number: ${{github.event.workflow_run.pull_requests[0].number}}
|
2021-08-11 22:10:22 +02:00
|
|
|
description-message: |
|
2021-08-10 12:49:25 +02:00
|
|
|
Preview: ${{ steps.netlify.outputs.deploy-url }}
|
2021-08-09 21:16:54 +02:00
|
|
|
⚠️ Do you trust the author of this PR? Maybe this build will steal your keys or give you malware. Exercise caution. Use test accounts.
|
2021-08-09 19:35:36 +02:00
|
|
|
|