Skip to content

Retrigger the workflow #7

Retrigger the workflow

Retrigger the workflow #7

# Copyright (c) 2024 Willem 'Jip' Wijnia
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: SpookyDB - update unit information
on:
workflow_dispatch:
push:
# branches:
# - deploy/faf
jobs:
build:
uses: FAForever/spooky-db/.github/workflows/build.yaml@master
deploy:
name: Deploy the SpookyDB
needs: [build]
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/webfactory-ssh-agent
# https://docs.github.com/en/authentication/connecting-to-github-with-ssh/managing-deploy-keys
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SPOOKYDB_DEPLOYMENT_KEY }}
# https://github.com/actions/checkout/tree/v4/
- name: Checkout spooky db code
uses: actions/checkout@v4
with:
repository: FAForever/spooky-db
path: gh-pages
ref: gh-pages
- name: Download recent unit information
uses: actions/download-artifact@v4
with:
name: spookydb-dist
path: dist
- name: Copy
run: |
# remove old files that have a hash in the name
rm -r gh-pages/css/*
rm -r gh-pages/data/*
rm -r gh-pages/img/*
rm -r gh-pages/js/*
rm -r gh-pages/views/*
# copy over new files
cp -r dist/* gh-pages/
- name: Deploy
working-directory: gh-pages
run: |
# Check for any differences between the working directory and the latest commit
if git diff --quiet; then
echo "No changes to deploy"
exit 0
fi
# Configure git
git config user.email "[email protected]"
git config user.name "FAForever"
# Stage, commit and push the changes
git stage .
git commit -m 'Automated deployment of spooky db'
git push origin HEAD:gh-pages