Skip to content

fixed issue with main menu blueprint that caused incorrect email/pass… #4

fixed issue with main menu blueprint that caused incorrect email/pass…

fixed issue with main menu blueprint that caused incorrect email/pass… #4

name: Linux Server build
on:
workflow_dispatch:
push:
branches:
- dev
- main
permissions:
contents: write
jobs:
deploy:
runs-on: unreal-builder
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_ACTOR }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Pull base image
run: bash docker_build.sh server
- name: Compress Directory
run: tar cvzf linux_server.tar.gz PackagedProject/LinuxServer
- name: Upload Compressed Folder as Artifact
uses: actions/upload-artifact@v4
with:
name: Linux Server build
path: linux_server.tar.gz