Skip to content

Build & deploy server to custom CDN branch #6

Build & deploy server to custom CDN branch

Build & deploy server to custom CDN branch #6

name: Build & deploy server to custom CDN branch
on:
workflow_dispatch:
inputs:
cdn_branch:
description: 'CDN branch'
required: true
version:
description: 'Version'
required: true
jobs:
build-windows:
name: Build windows release
runs-on: windows-2019
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
echo "BRANCH=${{ github.event.inputs.cdn_branch }}" >> $GITHUB_OUTPUT
- name: Build
shell: cmd
run: |
cd server
build.bat 0 %VERSION%
env:
VERSION: ${{ steps.version.outputs.VERSION }}
- name: Copy files
shell: cmd
run: |
cd server
mkdir upload\modules\js-module
mkdir debug
copy dist\js-module.dll upload\modules\js-module
copy dist\libnode.dll upload\modules\js-module
copy dist\js-module.pdb debug
- uses: actions/upload-artifact@v4
with:
name: js-module-windows
path: ./server/upload/
- uses: actions/upload-artifact@v4
with:
name: js-module-windows-debug
path: ./server/debug
build-linux:
name: Build linux release
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
echo "BRANCH=${{ github.event.inputs.cdn_branch }}" >> $GITHUB_OUTPUT
cd shared/deps/cpp-sdk
echo "SDK_COMMIT=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Build
run: |
cd server
./build.sh %VERSION%
env:
VERSION: ${{ steps.version.outputs.VERSION }}
- name: Copy files
run: |
cd server
mkdir -p upload/modules/js-module
cp ./dist/libjs-module.so ./upload/modules/js-module
cp ./dist/libnode.so ./upload/modules/js-module
echo ${{ steps.version.outputs.SDK_COMMIT }} >> ./upload/sdk.version
- uses: actions/upload-artifact@v4
with:
name: js-module-linux
path: ./server/upload/
deploy-cdn:
name: Deploy release to alt:V CDN
runs-on: ubuntu-20.04
needs: [build-linux, build-windows]
steps:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Cache node_modules
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}
- name: Download windows artifacts
uses: actions/download-artifact@v4
with:
name: js-module-windows
path: dist-windows
- name: Download linux artifacts
uses: actions/download-artifact@v4
with:
name: js-module-linux
path: dist-linux
- name: Extract version
id: version
shell: bash
run: |
TAG=${GITHUB_REF/refs\/tags\//}
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
echo "BRANCH=${{ github.event.inputs.cdn_branch }}" >> $GITHUB_OUTPUT
echo "SDK_VERSION=$(cat dist-linux/sdk.version)" >> $GITHUB_OUTPUT
rm dist-linux/sdk.version
- name: Install upload tool
run: npm i @altmp/upload-tool@latest fast-xml-parser@4.3.6
- name: Deploy windows artifacts to cdn
run: npx alt-upload dist-windows js-module/$BRANCH/x64_win32 $VERSION $SDK_VERSION
env:
AWS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_BUCKET: ${{ secrets.AWS_BUCKET }}
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }}
CF_CACHE_PURGE_TOKEN: ${{ secrets.CF_CACHE_PURGE_TOKEN }}
CF_CACHE_ZONE_ID: ${{ secrets.CF_CACHE_ZONE_ID }}
CF_CACHE_PURGE_URL: ${{ secrets.CF_CACHE_PURGE_URL }}
BRANCH: ${{ steps.version.outputs.BRANCH }}
VERSION: ${{ steps.version.outputs.VERSION }}
SDK_VERSION: ${{ steps.version.outputs.SDK_VERSION }}
- name: Deploy linux artifacts to cdn
run: npx alt-upload dist-linux js-module/$BRANCH/x64_linux $VERSION $SDK_VERSION
env:
AWS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_BUCKET: ${{ secrets.AWS_BUCKET }}
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }}
CF_CACHE_PURGE_TOKEN: ${{ secrets.CF_CACHE_PURGE_TOKEN }}
CF_CACHE_ZONE_ID: ${{ secrets.CF_CACHE_ZONE_ID }}
CF_CACHE_PURGE_URL: ${{ secrets.CF_CACHE_PURGE_URL }}
BRANCH: ${{ steps.version.outputs.BRANCH }}
VERSION: ${{ steps.version.outputs.VERSION }}
SDK_VERSION: ${{ steps.version.outputs.SDK_VERSION }}
build-docker:
name: Trigger Docker image build
runs-on: ubuntu-latest
needs: [deploy-cdn]
steps:
- name: Get Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v2
with:
application_id: ${{ secrets.CI_APP_ID }}
application_private_key: ${{ secrets.CI_APP_PRIVATE_KEY }}
permissions: "actions:write"
organization: altmp
- name: Trigger Docker build
uses: benc-uk/workflow-dispatch@v1
with:
workflow: build.yml
ref: main
repo: altmp/altv-docker
token: ${{ steps.get_workflow_token.outputs.token }}