Skip to content

deploy

deploy #29

Workflow file for this run

# 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: deploy
on:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yaml
deploy:
needs: [build]
name: deploy
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: spookydb-dist
path: dist
# 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: 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 "administrator@faforever.com"
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