From 8be0670560dd3de698ecd4779869278a472d1e77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Sun, 12 Nov 2023 14:47:49 +0100 Subject: [PATCH] ci: push to github pages --- .github/workflows/deploy.yml | 41 ++++++++++++++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 43 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..d7c6942 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,41 @@ +name: Pousse la version web vers GitHub Pages + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install love.js + run: npm install -g love.js + - name: Build js + run: make js + - name: Upload GitHub Pages artifact + # https://github.com/marketplace/actions/upload-github-pages-artifact + # https://github.com/actions/upload-pages-artifact/blob/main/action.yml + uses: actions/upload-pages-artifact@v1 + with: + name: github-pages + path: dist/js + + + deploy: + runs-on: ubuntu-latest + needs: build + permissions: + pages: write # to deploy to Pages + id-token: write # to verify the deployment originates from an appropriate source + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + steps: + - name: Deploy to GitHub Pages + # https://github.com/marketplace/actions/deploy-github-pages-site + id: deployment + uses: actions/deploy-pages@v2 + with: + artifact_name: github-pages diff --git a/README.md b/README.md index 2045310..eb16c92 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Ceci est un squelette de jeu inspiré par Bubble Bobble et à destination des ateliers d'initiation à la programmation organisés par la ludothèque de Briançon [Au Coin du Jeu](https://www.aucoindujeu05.fr/). +La version de base du jeu est jouable en ligne : https://aucoindujeu.github.io/base-bubblebobble/ Ne vous étonnez pas si tout est blanc et silencieux, c'est justement le but de ce projet ! + ## Instructions Lancer le jeu: