privacyguides.org/.github/workflows/release.yml

87 lines
2.3 KiB
YAML
Raw Normal View History

2022-08-25 01:24:49 +00:00
name: 📦 Releases
on:
push:
tags:
- '*'
jobs:
2023-03-11 19:29:07 +00:00
build:
2022-08-25 01:24:49 +00:00
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
2023-03-11 19:29:07 +00:00
2022-08-25 01:24:49 +00:00
steps:
2023-03-11 19:29:07 +00:00
- 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
2023-03-11 19:29:07 +00:00
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
2023-03-12 01:33:39 +00:00
- 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
2023-03-11 19:29:07 +00:00
- name: Create release notes
uses: ncipollo/release-action@v1
2022-08-25 01:24:49 +00:00
with:
generateReleaseNotes: true
token: ${{ secrets.REPO_TOKEN }}
2023-03-12 01:33:39 +00:00
artifacts: "offline.zip,offline.tar.gz,privacy_guides.zim"