From 84d089390e39b0d1cfa8fe64d8e3c014e325bd71 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Sat, 30 Dec 2023 16:04:05 +0000 Subject: [PATCH] Adding an automated workflow for forgejo. (#1) Reviewed-on: https://git.garrity.co/garrity-software/gs-uuid/pulls/1 --- .forgejo/workflows/build.yaml | 8 ++++++++ README.md | 11 ++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 .forgejo/workflows/build.yaml diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..a9ae19c --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,8 @@ +on: [push] +jobs: + test: + runs-on: docker + container: + image: alpine:3.19 + steps: + - run: echo Verifying builds diff --git a/README.md b/README.md index bb27656..c71220e 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,12 @@ code is copied to this implementation (and slightly modified). ## Usage -This library is not yet published. +This artifact is available in the Garrity Software Maven repository. ```scala -object GS { - val UUID: ModuleID = - "gs" %% "gs-uuid-v0" % "0.1.0" -} +externalResolvers += + "Garrity Software Releases" at "https://maven.garrity.co/releases" + +val GsUuid: ModuleID = + "gs" %% "gs-uuid-v0" % "0.1.0" ```