Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| edef584a85 | |||
| 28135f06d6 | |||
| 5079c57a05 | |||
| 241309537a | |||
|
bcbe17f010
|
|||
| 0bf64d97bf | |||
|
941b2b4158
|
|||
| 6533f064d5 | |||
| 64e0405e68 | |||
| ec3ea75db5 | |||
| ce6c0e3d93 | |||
| a93952408b | |||
|
0db830b3b1
|
|||
| 64cfb98016 | |||
| 222b5aaafb | |||
| 773c6acc1b | |||
| be19c98a02 |
@@ -0,0 +1,19 @@
|
|||||||
|
name: auth0mock
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
|
||||||
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: buildtool/setup-buildtools-action@v1
|
||||||
|
- name: Build and push
|
||||||
|
run: unset GITEA_TOKEN && build && push
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
uses: unboundsoftware/shared-workflows/.gitea/workflows/Release.yml@main
|
||||||
@@ -1,3 +1,13 @@
|
|||||||
|
## [0.6.0] - 2026-01-09
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Migrate from GitLab CI to Gitea Actions
|
||||||
|
- Add release workflow using shared workflow
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Remove incorrect digest pinning from image reference
|
||||||
## [0.5.1] - 2025-12-29
|
## [0.5.1] - 2025-12-29
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
### 🐛 Bug Fixes
|
||||||
|
|||||||
+2
-2
@@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.25@sha256:36b4f45d2874905b9e8573b783292629bcb346d0a70d8d7150b6df545234818f AS build
|
FROM golang:1.25@sha256:6cc2338c038bc20f96ab32848da2b5c0641bb9bb5363f2c33e9b7c8838f9a208 AS build
|
||||||
|
|
||||||
ARG GITLAB_USER
|
ARG GITLAB_USER
|
||||||
ARG GITLAB_TOKEN
|
ARG GITLAB_TOKEN
|
||||||
@@ -13,7 +13,7 @@ RUN go mod download
|
|||||||
COPY . .
|
COPY . .
|
||||||
RUN go build -ldflags="-s -w" -o /release/service ./cmd/service
|
RUN go build -ldflags="-s -w" -o /release/service ./cmd/service
|
||||||
|
|
||||||
FROM gcr.io/distroless/static-debian12
|
FROM gcr.io/distroless/static-debian12@sha256:4b2a093ef4649bccd586625090a3c668b254cfe180dee54f4c94f3e9bd7e381e
|
||||||
|
|
||||||
ENV TZ=Europe/Stockholm
|
ENV TZ=Europe/Stockholm
|
||||||
ENV AUDIENCE="https://shiny.unbound.se"
|
ENV AUDIENCE="https://shiny.unbound.se"
|
||||||
|
|||||||
+1
-1
@@ -14,7 +14,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: auth0mock
|
- name: auth0mock
|
||||||
image: registry.gitlab.com/unboundsoftware/auth0mock:${COMMIT}
|
image: oci.unbound.se/unboundsoftware/auth0mock:${COMMIT}
|
||||||
imagePullPolicy: "IfNotPresent"
|
imagePullPolicy: "IfNotPresent"
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
|
|||||||
Reference in New Issue
Block a user