now?
All checks were successful
Deploy Frontend / deploy (push) Successful in 4m43s

This commit is contained in:
Lee 2024-10-02 14:08:57 +01:00
parent 130b9bfdec
commit ec694e97fa
3 changed files with 21 additions and 1 deletions

@ -25,7 +25,7 @@ jobs:
- name: Build Image - name: Build Image
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: ./Frontend/Dockerfile context: ./Frontend
push: true push: true
tags: | tags: |
git.fascinated.cc/fascinated/scoresaber-reloaded:${{ github.sha }} git.fascinated.cc/fascinated/scoresaber-reloaded:${{ github.sha }}

10
Backend/pom.xml Normal file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cc.fascinated.ssr</groupId>
<artifactId>Backend</artifactId>
<version>1.0-SNAPSHOT</version>
</project>

@ -0,0 +1,10 @@
package cc.fascinated.ssr;
/**
* @author Fascinated (fascinated7)
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}