Skip to content

Commit

Permalink
Update github workflow to push dist to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgraham committed Nov 19, 2024
1 parent 0e1c508 commit 7a3afc9
Showing 1 changed file with 31 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to CDN
name: Build Push Deploy

on:
push:
Expand All @@ -19,11 +19,10 @@ jobs:
node-version: 20
cache: yarn

- name: Increase network timeout
run: yarn config set network-timeout 300000

- name: Install dependencies
run: yarn install --prefer-offline
run: |
yarn config set network-timeout 300000
yarn install --prefer-offline
- name: Build
continue-on-error: false
Expand All @@ -36,6 +35,33 @@ jobs:
path: dist
retention-days: 30

push:
name: Push
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist

- name: Push distribution
run: |
MSG="$(printf "Publish distribution\n[skip ci]")"
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add dist -f
git commit -m "$MSG" --no-verify --signoff
git push origin $BRANCH_NAME
deploy:
name: Deploy
needs: build
Expand Down

0 comments on commit 7a3afc9

Please sign in to comment.