Automated documentation.yml running on bleed merge

This commit is contained in:
penev92
2023-10-17 23:55:46 +03:00
committed by Gustas
parent ead6bdecb6
commit 59ad9e3cd7

View File

@@ -2,6 +2,7 @@ name: Deploy Documentation
on:
push:
branches: [ bleed ]
tags: [ 'release-*', 'playtest-*' ]
workflow_dispatch:
inputs:
@@ -73,9 +74,14 @@ jobs:
- name: Prepare environment variables
run: |
if [ "${{ github.event_name }}" = "push" ]; then
VERSION=`echo "${GITHUB_REF#refs/tags/}" | cut -d"-" -f1`
echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "VERSION=$VERSION" >> $GITHUB_ENV
if [ "${{ github.ref_type }}" = "tag" ]; then
VERSION=`echo "${GITHUB_REF#refs/tags/}" | cut -d"-" -f1`
echo "GIT_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "VERSION=$VERSION" >> $GITHUB_ENV
else
echo "GIT_TAG=bleed" >> $GITHUB_ENV
echo "VERSION=bleed" >> $GITHUB_ENV
fi
else
VERSION=`echo "${{ github.event.inputs.tag }}" | cut -d"-" -f1`
echo "GIT_TAG=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
@@ -96,7 +102,7 @@ jobs:
run: |
make all
# VERSION is release/playtest - the name of the target branch.
# VERSION is release/playtest/bleed - the name of the target branch.
- name: Clone docs.openra.net
uses: actions/checkout@v3
with: