Skip to content

Commit

Permalink
Merge pull request #16 from bitpredator/main
Browse files Browse the repository at this point in the history
proviamo cosi
  • Loading branch information
bitpredator committed Dec 18, 2023
2 parents a68e947 + 6389634 commit 1bbfd1e
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions .github/workflows/deploy-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,22 @@ name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: [main]
branches: ['main']

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
group: 'pages'
cancel-in-progress: true

env:
# Hosted GitHub runners have 7 GB of memory available, let's use 6 GB
NODE_OPTIONS: --max-old-space-size=6144

jobs:
# Single deploy job since we're just deploying
deploy:
Expand All @@ -33,23 +29,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
node-version: 18
cache: 'npm'
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
run: npm install
- name: Build
run: yarn build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: build
# Upload dist repository
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 1bbfd1e

Please sign in to comment.