2021-08-09 20:35:36 +03: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 21:25:17 +03:00
|
|
|
|
|
|
|
var contextArtifact = artifacts.data.artifacts.filter((artifact) => {
|
|
|
|
return artifact.name == "context.json"
|
|
|
|
})[0];
|
|
|
|
var download = await github.actions.downloadArtifact({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
artifact_id: contextArtifact.id,
|
|
|
|
archive_format: 'zip',
|
|
|
|
});
|
|
|
|
var fs = require('fs');
|
|
|
|
fs.writeFileSync('${{github.workspace}}/context.json.zip', Buffer.from(download.data));
|
|
|
|
- name: Extract Artifacts
|
|
|
|
run: unzip -d webapp previewbuild.zip && rm previewbuild.zip && unzip context.json && rm context.json.zip
|
|
|
|
- name: 'Read Context'
|
|
|
|
id: readctx
|
|
|
|
uses: actions/github-script@v3.1.0
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
var fs = require('fs');
|
|
|
|
var ctx = JSON.parse(fs.readFileSync('${{github.workspace}}/context.json'));
|
|
|
|
console.log(`::set-output name=prnumber::${ctx.payload.pull_request.number}`);
|
2021-08-09 20:35:36 +03:00
|
|
|
- name: Deploy to Netlify
|
2021-08-09 22:16:54 +03:00
|
|
|
id: netlify
|
2021-08-09 20:35:36 +03:00
|
|
|
uses: nwtgck/actions-netlify@v1.2
|
|
|
|
with:
|
|
|
|
publish-dir: .
|
|
|
|
deploy-message: "Deploy from GitHub Actions"
|
2021-08-09 22:16:54 +03:00
|
|
|
# These don't work because we're in workflow_run
|
|
|
|
enable-pull-request-comment: false
|
2021-08-09 20:35:36 +03: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-09 22:16:54 +03:00
|
|
|
- name: Comment on PR
|
|
|
|
uses: phulsechinmay/rewritable-pr-comment@v0.3.0
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-08-11 21:25:17 +03:00
|
|
|
ISSUE_ID: ${{ steps.readctx.outputs.prnumber }}
|
2021-08-09 22:16:54 +03:00
|
|
|
message: |
|
2021-08-10 13:49:25 +03:00
|
|
|
Preview: ${{ steps.netlify.outputs.deploy-url }}
|
2021-08-09 22:16:54 +03: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 20:35:36 +03:00
|
|
|
|