Bump braces from 3.0.2 to 3.0.3 #376
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: Deploy to DigitalOcean Spaces | |
on: push | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Build tool | |
run: npm run build | |
env: | |
NODE_ENV: production | |
- name: Deploy commit to DigitalOcean Spaces | |
run: aws s3 sync ./dist s3://${{ secrets.SPACES_BUCKET }}/commits/nginxconfig/${{ github.sha }} --endpoint=https://${{ secrets.SPACES_REGION }}.digitaloceanspaces.com --acl public-read --content-encoding utf8 | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: ${{ secrets.SPACES_REGION }} | |
- name: Leave a comment on commit | |
run: npm run deploy:spaces:comment | |
env: | |
REPO_NAME: ${{ github.repository }} | |
COMMIT_SHA: ${{ github.sha }} | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SPACES_REGION: ${{ secrets.SPACES_REGION }} | |
SPACES_BUCKET: ${{ secrets.SPACES_BUCKET }} |