Skip to content

Commit

Permalink
- Deploy project
Browse files Browse the repository at this point in the history
- Build project
  • Loading branch information
cluster28 committed Sep 17, 2024
1 parent 15b5ad3 commit 359021e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Sample workflow for building and deploying a Next.js site to GitHub Pages
#
# To get started with Next.js see: https://nextjs.org/docs/getting-started
#
name: Deploy development branch to Netlify

on: [push]

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
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:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Send deploy webhook
run: curl -X POST -d '{}' https://api.netlify.com/build_hooks/${{ secrets.JORDI_DEVELOPMENT_DEPLOY_WEBHOOK_ID }}

0 comments on commit 359021e

Please sign in to comment.