Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from gitcoindev/move-deploy-logger-page-workflow
Browse files Browse the repository at this point in the history
chore: use generic ubiquity .github/workflows/deploy.yml workflow
  • Loading branch information
rndquu authored Oct 13, 2023
2 parents 16e28ff + 563e34d commit f87b139
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 48 deletions.
48 changes: 0 additions & 48 deletions .github/workflows/cloudflare-deploy.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/continuous-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy to Cloudflare Pages

on:
workflow_run:
workflows: ["Build"]
types:
- completed

jobs:
deploy-to-cloudflare:
name: Deploy to Cloudflare Pages
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ubiquity/.github/.github/workflows/deploy.yml@main
permissions:
contents: read
pull-requests: write
secrets:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
UBIQUITY_BOUNTY_BOT_APP_ID: ${{ secrets.UBIQUITY_BOUNTY_BOT_APP_ID }}
UBIQUITY_BOUNTY_BOT_PRIVATE_KEY: ${{ secrets.UBIQUITY_BOUNTY_BOT_PRIVATE_KEY }}

0 comments on commit f87b139

Please sign in to comment.