Don't run builder GitHub Actions on forks #2131
Workflow file for this run
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
name: 'Build cf.gov artifact' | ||
Check failure on line 1 in .github/workflows/build-artifact.yml GitHub Actions / Build cf.gov artifactInvalid workflow file
|
||
on: | ||
pull_request: | ||
merge_group: | ||
workflow_dispatch: | ||
jobs: | ||
Build: | ||
if: ! github.event.pull_request.head.repo.fork | ||
runs-on: ubuntu-latest | ||
env: | ||
ARTIFACT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Build frontend | ||
run: yarn run build | ||
- name: Run the build process with Docker | ||
uses: addnab/docker-run-action@4f65fabd2431ebc8d299f8e5a018d79a769ae185 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
image: ghcr.io/${{ github.repository }}-builder:main | ||
options: -v ${{ github.workspace }}:/cfgov | ||
run: | | ||
source scl_source enable rh-python38 | ||
./call_create.sh | ||
- name: Upload arifact | ||
uses: keithweaver/[email protected] | ||
with: | ||
command: cp | ||
source: cfgov_current_build.zip | ||
destination: s3://${{ secrets.BUCKET }}/cfgov_${{ env.ARTIFACT_SHA }}_build.zip | ||
aws_access_key_id: ${{ secrets.BUILD_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.BUILD_SECRET_ACCESS_KEY }} | ||
aws_region: us-east-1 |