ci
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m7s
Publish Docker Image / docker (ubuntu-latest) (push) Successful in 48s

This commit is contained in:
Lee 2024-04-23 03:36:14 +01:00
parent a4a29cfa20
commit afa7d4a71d
3 changed files with 49 additions and 1 deletions

@ -0,0 +1,39 @@
name: Publish Docker Image
on:
push:
branches: ["master"]
paths-ignore:
- .gitignore
- README.md
- LICENSE
jobs:
docker:
strategy:
matrix:
arch: ["ubuntu-latest"]
runs-on: ${{ matrix.arch }}
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Login to Docker Hub
- name: Login to Repo
uses: docker/login-action@v3
with:
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }}
# Build the Docker image
- name: Build Docker Image
uses: docker/build-push-action@v5
with:
push: true
context: .
tags: fascinated/paste-backend:latest

@ -14,6 +14,11 @@ public class Paste {
@Id @NonNull @Id @NonNull
private final String id; private final String id;
/**
* The time the paste was created.
*/
private final long created;
/** /**
* The content of the paste. * The content of the paste.
*/ */

@ -36,7 +36,11 @@ public class PasteService {
* @return The id of the paste. * @return The id of the paste.
*/ */
public String createPaste(String content) { public String createPaste(String content) {
return pasteRepository.save(new Paste(RandomStringUtils.randomAlphabetic(idLength), content)).getId(); return pasteRepository.save(new Paste(
RandomStringUtils.randomAlphabetic(idLength),
System.currentTimeMillis(),
content
)).getId();
} }
/** /**