Skip to content

Commit

Permalink
Merge pull request #1851 from zexi/revert-site
Browse files Browse the repository at this point in the history
revert publishing site
  • Loading branch information
zexi committed Dec 6, 2023
2 parents 9c29055 + f28fd74 commit 4382e23
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: Release github pages

on:
push:
branches:
- release/3.10 # Set a branch to deploy
# - release/* # Set a branch to deploy
# - master # Set a branch to deploy
tags:
- v3.*

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive # Fetch the Docsy theme
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.120.0'
extended: true

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install

- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.11.3'

- name: Install python requirements
run: |
pip3 install pyyaml
- name: Build public site
run: |
./scripts/build.py --host=https://www.cloudpods.org --edition=ce --multi-versions --no-out-fetch
ls -alh ./public
# - name: Publish site
# uses: peaceiris/actions-gh-pages@v3
# with:
# personal_token: ${{ secrets.PERSONAL_TOKEN }}
# publish_dir: ./public
# external_repository: yunionio/yunionio.github.io
# allow_empty_commit: true
# cname: www.cloudpods.org
# publish_branch: master
#
- name: Publish site to AWS s3
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# deploy config
AWS_REGION: 'ap-east-1'
SOURCE_DIR: 'public'

0 comments on commit 4382e23

Please sign in to comment.