Skip to content

Update Projects page. (#44) #23

Update Projects page. (#44)

Update Projects page. (#44) #23

Workflow file for this run

name: NodeJS with Gulp
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Build
run: |
npm install
gulp
- name: S3 Sync
uses: jakejarvis/s3-sync-action@master
if: github.ref == 'refs/heads/master'
with:
args: --acl public-read --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-central-1'
SOURCE_DIR: 'build'