fixed issue with main menu blueprint that caused incorrect email/pass… #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |