mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-01-25 23:15:58 -05:00
3e7d6c6ac2
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.0 to 3.3.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.0...v3.3.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
87 lines
2.3 KiB
YAML
87 lines
2.3 KiB
YAML
name: 📦 Releases
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
name: Create Release
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: '0'
|
|
ssh-key: ${{ secrets.ACTIONS_SSH_KEY }}
|
|
submodules: 'true'
|
|
|
|
- name: Pages setup
|
|
uses: actions/configure-pages@v3
|
|
|
|
- name: Python setup
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.8'
|
|
|
|
- name: Cache files
|
|
uses: actions/cache@v3.3.1
|
|
with:
|
|
key: ${{ github.ref }}
|
|
path: .cache
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
pip install pipenv
|
|
pipenv install
|
|
|
|
- name: Build website
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
CARDS: true
|
|
run: |
|
|
pipenv run mkdocs build --config-file config/mkdocs.offline.yml
|
|
pipenv run mkdocs --version
|
|
|
|
- name: Package website
|
|
run: |
|
|
tar -czvf offline.tar.gz site
|
|
zip -r -q offline.zip site
|
|
|
|
- name: Upload tar.gz file
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: offline.tar.gz
|
|
path: offline.tar.gz
|
|
|
|
- name: Upload zip file
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: offline.zip
|
|
path: offline.zip
|
|
|
|
- name: Create ZIM File
|
|
uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: openzim/zim-tools:latest
|
|
options: -v ${{ github.workspace }}:/data
|
|
run: |
|
|
zimwriterfs -w index.html -I assets/brand/PNG/Square/pg-yellow.png -l eng -t "Privacy Guides" -d "Your central privacy and security resource to protect yourself online." -c "Privacy Guides" -p "Jonah Aragon" -n "Privacy Guides" -e "https://github.com/privacyguides/privacyguides.org" /data/site /data/privacy_guides.zim
|
|
|
|
- name: Upload ZIM file
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: privacy_guides.zim
|
|
path: privacy_guides.zim
|
|
|
|
- name: Create release notes
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
generateReleaseNotes: true
|
|
token: ${{ secrets.REPO_TOKEN }}
|
|
artifacts: "offline.zip,offline.tar.gz,privacy_guides.zim"
|