From 3296eee590f795022dfae49567860270af5c6d51 Mon Sep 17 00:00:00 2001 From: Ahmed Date: Tue, 2 Jun 2026 01:14:00 +0300 Subject: init: moved to git.gumx.cc --- ci-examples/.build.yml | 15 +++++++++++ ci-examples/.github/workflows/wr.yml | 48 ++++++++++++++++++++++++++++++++++++ ci-examples/.gitlab-ci.yml | 9 +++++++ 3 files changed, 72 insertions(+) create mode 100644 ci-examples/.build.yml create mode 100644 ci-examples/.github/workflows/wr.yml create mode 100644 ci-examples/.gitlab-ci.yml (limited to 'ci-examples') diff --git a/ci-examples/.build.yml b/ci-examples/.build.yml new file mode 100644 index 0000000..2bbd6ea --- /dev/null +++ b/ci-examples/.build.yml @@ -0,0 +1,15 @@ +image: alpine/edge +oauth: pages.sr.ht/PAGES:RW +packages: +- hut +environment: + site: webring.gumx.cc +sources: +- https://git.sr.ht/~a2/webring +tasks: +- package: | + cd webring + ./wr + tar -C public -cvz . > ../site.tar.gz +- upload: | + hut pages publish -d $site site.tar.gz \ No newline at end of file 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 diff --git a/ci-examples/.gitlab-ci.yml b/ci-examples/.gitlab-ci.yml new file mode 100644 index 0000000..db7c574 --- /dev/null +++ b/ci-examples/.gitlab-ci.yml @@ -0,0 +1,9 @@ +image: alpine:latest +pages: + script: + - ./wr + artifacts: + paths: + - public + only: + - pages \ No newline at end of file -- cgit v1.2.3