Skip to content

Commit

Permalink
Merge branch 'mainline' into python3
Browse files Browse the repository at this point in the history
  • Loading branch information
BSVino authored Nov 18, 2021
2 parents 09467eb + 99b500c commit 15c91c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/checkout@v2
with:
lfs: true
submodules: recursive

- name: Checkout LFS objects
run: git lfs checkout
Expand All @@ -24,6 +25,9 @@ jobs:
echo github.event.action: ${{ github.event.action }}
echo github.event_name: ${{ github.event_name }}
- name: Display python version
run: python -c "import sys; print(sys.version)"

- name: Compile docs.gl
run: python3 compile.py --full

Expand All @@ -35,6 +39,6 @@ jobs:
aws-region: us-west-2

- working-directory: landing/HTML
run: aws s3 sync public s3://docs.gl --delete
run: aws s3 sync htdocs s3://docs.gl --delete

- run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_CLOUDFRONT_DOCSGL_DISTRIBUTION_ID }} --paths /*
1 change: 1 addition & 0 deletions compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
print("FULL BUILD")
sys.path.append("htmlmin")
import htmlmin
print(dir(htmlmin))
else:
print("FAST BUILD")

Expand Down

0 comments on commit 15c91c8

Please sign in to comment.