-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/flipt-io/reverst
* 'main' of https://github.com/flipt-io/reverst: fix(config): only call run if informer not already synced (#33) fix(config): correctly set token supplied via explicit token field (#32) feat(config): support watching k8s secrets directly as token sources (#31) fix(server): call WriteHeader in status interceptor (#30) fix: correct typo and add cancel context handling in watchFSNotify function (#29) feat: rename reverst to reverstd and add a new tunnel client CLI in its place (#28) feat(gh): tag images pushed to main with SHA as latest (#27) fix(server/client): fix propagation of client errors from server to client (#26) chore(gh): run publish on merge_group event type chore(mod): upgrade quic-go to v0.44.0 (#25) fix(server): stop accumulating times and calculate correct ellapsed fix(roundrobbin): ensure current cannot be out of bounds fix(roundrobbin): ensure that evict is only called once chore(dagger): run unit tests 5 times repeatedly test(roundrobbin): add failing case ensuring one call to evict per unique eviction chore(server): add debug logging around metrics endpoint
- Loading branch information
Showing
38 changed files
with
1,760 additions
and
683 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: 'Publish Latest' | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
|
||
# limit concurrency of workflow to one run at a time | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
publish-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Tag current SHA being pushed to main as latest | ||
run: | | ||
docker buildx imagetools create \ | ||
--tag ghcr.io/${{ github.repository }}:latest \ | ||
ghcr.io/${{ github.repository }}:${{ github.sha }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.