Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dudushy committed Oct 7, 2024
1 parent f5cebf7 commit 373eb09
Showing 1 changed file with 20 additions and 28 deletions.
48 changes: 20 additions & 28 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,13 @@ on:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js 20.x
Expand All @@ -38,28 +30,28 @@ jobs:
- name: Install dependencies
run: npm ci

# - name: Test
# run: npm test

- name: Build
- name: Build project
run: npm run build

- name: Configure Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit and Push to gh-pages branch
- name: Add Files to Git
run: |
# Create a new directory to store compiled output
mkdir gh-pages
# Copy build output to the new directory
cp -r ./dist/* gh-pages/
# Initialize a new git repo in the gh-pages directory
cd gh-pages
cd dist
git init
git checkout -b gh-pages
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "Deploy updated static content"
# Force push to the gh-pages branch of the repository
git push --force "https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" gh-pages:gh-pages
if git diff --cached --quiet; then
echo "No changes to commit."
exit 0
fi
TIMESTAMP=$(date +"%d-%B-%Y %I:%M:%S %p")
git commit -m "🔄 Deploy updated static content" -m "${TIMESTAMP}"
- name: Push Changes to Repository
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages

0 comments on commit 373eb09

Please sign in to comment.