Skip to content

fix of fix

fix of fix #54

Workflow file for this run

name: Build web
on:
push:
branches:
- feature/github-build
- master
- devel
pull_request:
branches:
- master
- devel
schedule:
- cron: "5 4 2 * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
#- uses: actions/cache@v2
# with:
# path: ~/.cache/my
- name: build image
run: docker build .
- name: build website
run: ./dockerenv-github.sh ./pack.sh
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: site
path: pack.zip
- name: Repack as tar.gz
run: mkdir pack &&
cd pack &&
unzip ../pack.zip &&
mv statistiky/years.json{.new,} &&
tar cvf ../pack.tar .
- name: Upload Github Pages artifact
uses: actions/upload-artifact@v3
with:
name: github-pages
path: pack.tar
test-bleeding-edge-java-and-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build image
run: docker build . --target bleeding-edge
- name: build website
run: env DOCKER_TAG=bleeding-edge ./dockerenv-github.sh ./pack.sh
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: site-for-verification
path: pack.zip
compare:
needs: [build, test-bleeding-edge-java-and-npm]
runs-on: ubuntu-latest
steps:
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: site
path: ./build
- name: Download test-bleeding-edge-java-and-npm artifact
uses: actions/download-artifact@v3
with:
name: site-for-verification
path: ./verification
- name: Extract build artifact
run: mkdir build/unpacked && unzip -d build/unpacked build/pack.zip
- name: Extract test-bleeding-edge-java-and-npm artifact
run: mkdir verification/unpacked && unzip -d verification/unpacked verification/pack.zip
- name: Find
run: find
- name: Compare artifacts
run: diff -r build/unpacked verification/unpacked
deploy-to-github-pages:
needs: [build]
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- name: Deploy to Github Pages
id: deployment
uses: actions/deploy-pages@v2