Skip to content

Commit

Permalink
fixes testing push
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Dec 24, 2024
1 parent f7b420c commit 3ed2d61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dev_push_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: dev Push to S3
on:
push:
branches:
- vue3-pinboard
- x

jobs:
build:
Expand All @@ -28,7 +28,6 @@ jobs:
npm run build
env:
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FA_AUTH_TOKEN }}
VITE_GATEKEEPER_KEY: ${{ secrets.VUE_APP_GATEKEEPER_KEY }}

- name: Deploy to Dev s3, Set index headers
env:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/testing_push_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@ name: testing Push to S3
on:
push:
branches:
- small-content-changes
- vue3-pinboard

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '20.x'
cache: 'npm'

- name: npm install, and build
run: |
printf "@fortawesome:registry=https://npm.fontawesome.com/\n//npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}" >> ~/.npmrc
npm install
npm ci
npm run build:testing
env:
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FA_AUTH_TOKEN }}
VUE_APP_GATEKEEPER_KEY: ${{ secrets.VUE_APP_GATEKEEPER_KEY }}

- name: Deploy to Dev s3, Set index headers
env:
Expand Down

0 comments on commit 3ed2d61

Please sign in to comment.