Skip to content

Commit 41b70f7

Browse files
committed
Merge branch 'main' into example/opa
2 parents 5e00c3d + 0b67176 commit 41b70f7

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

.github/workflows/publish-docker.yaml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
name: Publish Docker image
22

33
on:
4-
workflow_run:
5-
workflows: ["CI/CD"]
6-
types:
7-
- completed
8-
branches:
9-
- main
4+
release:
5+
types: [published]
106

117
env:
128
REGISTRY: ghcr.io
139
IMAGE_NAME: ${{ github.repository }}
1410

1511
jobs:
1612
build-and-push:
17-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1813
runs-on: ubuntu-latest
1914
permissions:
2015
contents: read
@@ -40,11 +35,8 @@ jobs:
4035
with:
4136
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4237
tags: |
43-
type=raw,value=latest,enable={{is_default_branch}}
44-
type=semver,pattern={{version}}
45-
type=sha,format=long
46-
type=ref,event=branch
47-
type=ref,event=tag
38+
type=raw,value=${{ github.event.release.tag_name }}
39+
type=raw,value=latest,enable=${{ github.event.release.prerelease == false }}
4840
4941
- name: Build and push Docker image
5042
uses: docker/build-push-action@v5

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
---
77

8-
> [!WARNING]
9-
> This project is currently in active development and may change drastically in the near future while we work towards solidifying a first release.
10-
118
STAC Auth Proxy is a proxy API that mediates between the client and your internally accessible STAC API to provide flexible authentication, authorization, and content-filtering mechanisms.
129

1310
## ✨Features✨

0 commit comments

Comments
 (0)