Add Skip TLS Verification flag #7
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: Integration Test | |
on: | |
push: | |
branches: [ enhancement/skip-tls-verification ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Import Secrets | |
id: secrets | |
uses: hashicorp/[email protected] | |
with: | |
url: ${{ secrets.VAULT_ADDR }} | |
method: github | |
githubToken: ${{ secrets.GT_VAULT_AUTH_TOKEN }} | |
secrets: | | |
argocd/data/token admin | ARGOCD_TOKEN ; | |
- name: Self test | |
id: selftest | |
uses: ./ | |
with: | |
address: ${{ secrets.ARGOCD_ADDR }} | |
token: ${{ steps.secrets.outputs.ARGOCD_TOKEN }} | |
action: sync | |
appName: argocd-apps | |
image: latest | |