mirror of
https://github.com/opentofu/opentofu.org.git
synced 2026-01-11 19:56:26 +00:00
Removing always-failing dev deploy (#297)
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com>
This commit is contained in:
parent
a7802bab8a
commit
33b76f9691
1 changed files with 0 additions and 38 deletions
38
.github/workflows/deploy-dev.yml
vendored
38
.github/workflows/deploy-dev.yml
vendored
|
|
@ -1,38 +0,0 @@
|
|||
name: Deploy to Cloudflare Pages
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
deployments: write
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: 'true'
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18"
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Lint code
|
||||
run: npm run lint
|
||||
- name: Build website
|
||||
run: npm run build
|
||||
- name: Publish to Cloudflare Pages
|
||||
id: publish
|
||||
uses: cloudflare/pages-action@v1
|
||||
with:
|
||||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||
projectName: opentf-website
|
||||
directory: ./build
|
||||
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
wranglerVersion: 3
|
||||
Loading…
Add table
Reference in a new issue