build: Empty commit to re-trigger build after AWS policy change #5
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: Preview Website Deployment | |
on: | |
push: | |
branches-ignore : | |
- main | |
jobs: | |
# Build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out GitHub branch | |
# uses: actions/checkout@v4 | |
# - name: Set up Node.js | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# - name: Set up GitHub action | |
# uses: pnpm/action-setup@v3 | |
# with: | |
# version: 9 | |
# - name: Install dependencies | |
# run: pnpm install --frozen-lockfile | |
# - name: Build Angular project | |
# run: pnpm run build | |
# Test: | |
# needs: [Build] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Run unit tests | |
# run: pnpm run test | |
Deploy-Preview: | |
# needs: [Build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out GitHub branch | |
uses: actions/checkout@v4 | |
- name: Set up GitHub action | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build Angular project | |
run: pnpm run build | |
- name: Set 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-east-2 | |
- name: Copy to AWS S3 bucket | |
run: aws s3 sync dist/ s3://lcc-website-preview --delete |