aboutsummaryrefslogtreecommitdiffstats
path: root/ci-examples/.github
diff options
context:
space:
mode:
Diffstat (limited to 'ci-examples/.github')
-rw-r--r--ci-examples/.github/workflows/wr.yml48
1 files changed, 48 insertions, 0 deletions
diff --git a/ci-examples/.github/workflows/wr.yml b/ci-examples/.github/workflows/wr.yml
new file mode 100644
index 0000000..1459a9e
--- /dev/null
+++ b/ci-examples/.github/workflows/wr.yml
@@ -0,0 +1,48 @@
+name: Deploy webring to Pages
+
+on:
+ push:
+ branches: ["main"]
+ workflow_dispatch:
+
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+concurrency:
+ group: "pages"
+ cancel-in-progress: true
+
+defaults:
+ run:
+ shell: sh
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ with:
+ submodules: recursive
+ - name: Setup Pages
+ id: pages
+ uses: actions/configure-pages@v2
+ - name: Build webring
+ run: ./wr
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v1
+ with:
+ path: ./public
+
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v1