Skip to content

Commit

Permalink
Merge branch 'master' into import-claim-records
Browse files Browse the repository at this point in the history
  • Loading branch information
toshiSat committed Dec 5, 2024
2 parents 4706d64 + b8dda2a commit 845bdef
Show file tree
Hide file tree
Showing 65 changed files with 48,043 additions and 130 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/release-check-directory.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release Check Directory

on:
push:
branches: [main]
pull_request:

jobs:
release-check:
name: Check release
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: GoReleaser Directory Cross
run: make directory-release-dry-run-cross
env:
RELEASE: false
GITHUB_TOKEN: ""

- name: GoReleaser Directory
run: make directory-release-dry-run
env:
RELEASE: false
GITHUB_TOKEN: ""
40 changes: 40 additions & 0 deletions .github/workflows/release-check-sentinel.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release Check Sentinel

on:
push:
branches: [main]
pull_request:

jobs:
release-check:
name: Check release
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: GoReleaser Sentinel Cross
run: make sentinel-release-dry-run-cross
env:
RELEASE: false
GITHUB_TOKEN: ""

- name: GoReleaser Sentinel
run: make sentinel-release-dry-run
env:
RELEASE: false
GITHUB_TOKEN: ""
2 changes: 1 addition & 1 deletion .github/workflows/release-check.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Check
name: Release Check Arkeo

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
release: ["release", "release-cross","release-testnet","release-testnet-cross"]
release: ["release", "release-cross","release-testnet","release-testnet-cross","sentinel-release","sentinel-release-cross","sentinel-testnet-release","sentinel-testnet-cross","directory-release","directory-release-cross","directory-testnet","directory-testnet-cross"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,22 @@ Contains bug fixes.
Contains all the PRs that improved the code without changing the behaviors.
-->

# v1.0.3-Prerelease

## Added
- Added sentinel setup docs
- Added sentinel regression test
- Added go releaser for sentinel and directory service


## Changed
- Updated sentinel to handle provider events

## Fixed
- Fixed code lint
- Fixed ws client issue with event stream
- Fixed swagger issue

# v1.0.2-Prerelease

## Added
Expand Down
Loading

0 comments on commit 845bdef

Please sign in to comment.