Add initial version of login to Octopus with OIDC or API keys #1
Workflow file for this run
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
name: Test login | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
server: | |
type: string | |
description: The url of the Octopus Instance | |
required: true | |
service_account_id: | |
type: string | |
description: The id of the service account to login for | |
required: true | |
jobs: | |
login: | |
runs-on: ubuntu-latest | |
name: Test login to Octopus | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Login to Octopus | |
# uses: ./ | |
# with: | |
# server: ${{ inputs.server }} | |
# service_account_id: ${{ inputs.service_account_id }} |