-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from AElfProject/feature/google-recaptcha
feat: added google-recaptcha verification integration in claim api
- Loading branch information
Showing
11 changed files
with
280 additions
and
71 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,74 @@ | ||
name: Build and Deploy Faucet Backend | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
env: | ||
description: Environment | ||
type: choice | ||
required: true | ||
default: staging | ||
options: | ||
- staging | ||
- production | ||
run-name: Build and Deploy Faucet Backend ${{ github.head_ref }} ${{ github.sha }} to ${{ inputs.env }} | ||
env: | ||
IMAGE_NAME: faucet-backend | ||
jobs: | ||
build-and-push-image: | ||
runs-on: aelf-faucet-backend-runner | ||
strategy: | ||
matrix: | ||
include: | ||
- service: "dbmigrator" | ||
name: "AELFFaucet.DbMigrator" | ||
- service: "web" | ||
name: "AELFFaucet.Web" | ||
outputs: | ||
short_sha: ${{ steps.vars.outputs.short_sha }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Set short git commit SHA | ||
id: vars | ||
run: | | ||
calculatedSha=$(git rev-parse --short ${{ github.sha }}) | ||
echo "short_sha=$calculatedSha" >> "$GITHUB_OUTPUT" | ||
- name: Create image tag | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ secrets.REPOSITORY_REGION }}-docker.pkg.dev/${{ secrets.PROJECT_ID }}/${{ secrets.REPOSITORY }}/${{ env.IMAGE_NAME }}-${{ matrix.service }} | ||
tags: | | ||
type=sha | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build and push Docker image | ||
id: build-and-push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/amd64 | ||
build-args: | | ||
servicename=${{ matrix.name }} | ||
dispatch: | ||
runs-on: aelf-faucet-backend-runner | ||
needs: build-and-push-image | ||
steps: | ||
- name: Deploy | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.TOK }} | ||
script: | | ||
await github.rest.actions.createWorkflowDispatch({ | ||
owner: 'AElfDevops', | ||
repo: 'devops', | ||
workflow_id: 'faucet-backend-deploy.yaml', | ||
ref: 'main', | ||
inputs: { | ||
env: '${{ github.event.inputs.env }}', | ||
commit_sha: 'sha-${{ needs.build-and-push-image.outputs.short_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS fetch-env | ||
WORKDIR /App | ||
COPY . . | ||
RUN dotnet restore -s https://api.nuget.org/v3/index.json -s https://www.myget.org/F/aelf-project-dev/api/v3/index.json | ||
|
||
FROM fetch-env AS build-env | ||
WORKDIR /App | ||
ARG servicename | ||
RUN dotnet publish src/$servicename/$servicename.csproj -o /output | ||
|
||
FROM mcr.microsoft.com/dotnet/aspnet:8.0 | ||
WORKDIR /App | ||
COPY --from=build-env /output . | ||
ARG servicename | ||
ENV RUNCMD="dotnet $servicename.dll" | ||
CMD $RUNCMD |
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
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,7 @@ | ||
namespace AELFFaucet | ||
{ | ||
public class CaptchaResponse | ||
{ | ||
public bool success { get; set; } | ||
} | ||
} |
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.