Skip to content

Commit 8c4d58a

Browse files
authored
GoDaddy AnyCA Plugin REST version 1.0.0 (#1)
1.0.0 - First production release of the GoDaddy AnyCA Gateway REST plugin
1 parent 39f5237 commit 8c4d58a

32 files changed

Lines changed: 5212 additions & 0 deletions
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Keyfactor Bootstrap Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
types: [opened, closed, synchronize, edited, reopened]
7+
push:
8+
create:
9+
branches:
10+
- 'release-*.*'
11+
12+
jobs:
13+
call-starter-workflow:
14+
uses: keyfactor/actions/.github/workflows/starter.yml@v2
15+
secrets:
16+
token: ${{ secrets.V2BUILDTOKEN}}
17+
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}}
18+
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }}
19+
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }}
20+

.github/workflows/tests.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build and Test dotnet project
2+
on: [workflow_dispatch, push, pull_request]
3+
jobs:
4+
build-and-test:
5+
name: Build and Test dotnet project
6+
runs-on: ubuntu-latest
7+
timeout-minutes: 5
8+
steps:
9+
# Checkout code
10+
# https://github.com/actions/checkout
11+
- name: Checkout code
12+
uses: actions/checkout@v4
13+
14+
# Setup dotnet 6.0
15+
# https://github.com/actions/setup-dotnet
16+
- uses: actions/setup-dotnet@v3
17+
with:
18+
dotnet-version: '6.x'
19+
20+
# Setup nuget
21+
- name: Setup build environment
22+
run: |
23+
dotnet nuget add source https://nuget.pkg.github.com/Keyfactor/index.json -n github -u ${{ github.actor }} -p ${{ secrets.V2BUILDTOKEN }} --store-password-in-clear-text
24+
dotnet restore
25+
26+
# Build and test dotnet project
27+
- name: Build and Test
28+
run: dotnet test
29+

0 commit comments

Comments
 (0)