az-swa-deploy #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ssg | |
on: | |
# schedule: | |
# - cron: "30 4 * * *" | |
workflow_dispatch: | |
env: | |
SSHSTATS_BACKEND: "https://monkfish-app-ss3gb.ondigitalocean.app" | |
SSHSTATS_NUXT_PUBLIC_BASE_URL: "http://localhost:65000" | |
jobs: | |
generate-website: | |
runs-on: ubuntu-22.04 | |
services: | |
data-server: | |
image: nginx:1.27.1 | |
ports: | |
- 65000:80 | |
volumes: | |
- ${{github.workspace}}/nginx:/usr/share/nginx/html | |
steps: | |
- name: checkout frontend repo | |
uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22.6.0" | |
- name: unpack nodenames | |
run: | | |
SSHSTATS_NODENAMES=$(jq -r '.[]' fe/assets/nodenames.json | tr '\n' ' ') | |
echo "SSHSTATS_NODENAMES=$SSHSTATS_NODENAMES" >> "$GITHUB_ENV" | |
- name: download attempts data | |
run: | | |
for nodename in $SSHSTATS_NODENAMES; do | |
echo "Downloading $nodename.json" | |
curl -v \ | |
-H "${{ secrets.SSHSTATS_API_AUTH_KEY }}: ${{ secrets.SSHSTATS_API_AUTH_VALUE }}" \ | |
--output-dir fe/data/logins \ | |
-o "$nodename.json" \ | |
"${{ env.SSHSTATS_BACKEND }}/stats/$nodename" | |
done | |
- name: store attempts data | |
uses: actions/upload-artifact@v4 | |
with: | |
name: attempts-data | |
path: | | |
fe/data/logins/*.json | |
- name: move attempts data | |
run: | | |
mkdir -p ${{github.workspace}}/nginx | |
cp -v -R --parents logins ${{github.workspace}}/nginx | |
working-directory: ./fe/data | |
- name: configure nuxt | |
run: | | |
echo "NUXT_PUBLIC_BASE_URL=${{ env.SSHSTATS_NUXT_PUBLIC_BASE_URL }}" >> fe/.env | |
- name: npm ci | |
working-directory: ./fe | |
run: | | |
npm ci | |
- name: nuxt generate | |
working-directory: ./fe | |
run: | | |
npm run generate | |
- name: store static site | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ssg-data | |
path: | | |
fe/.output/public/ |