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
on: [push] | ||
jobs: | ||
main: | ||
name: Sumbit Workflow Test | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v2.2.0 | ||
with: | ||
node-version: "18.x" | ||
- name: Setup kubectl | ||
uses: azure/setup-kubectl@v3 | ||
with: | ||
version: "latest" | ||
- name: AWS Configure | ||
uses: aws-actions/configure-aws-credentials@v1.6.1 | ||
with: | ||
aws-region: ap-southeast-2 | ||
mask-aws-account-id: true | ||
role-to-assume: ${{ secrets.AWS_CI_ROLE }} | ||
- name: Login to EKS | ||
run: | | ||
aws eks update-kubeconfig --name Workflow --region ap-southeast-2 --role-arn ${{ secrets.AWS_EKS_ROLE }} | ||
- name: Check EKS connection | ||
run: | | ||
kubectl get nodes | ||
- name: Install Argo | ||
run: | | ||
curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.0-rc2/argo-linux-amd64.gz | ||
gunzip argo-linux-amd64.gz | ||
chmod +x argo-linux-amd64 | ||
./argo-linux-amd64 version | ||
- name: Checkout files in repo | ||
uses: actions/checkout@master | ||
- name: Submit Argo Workflow | ||
run: | | ||
"argo submit --from wftml/publish-copy -n argo -f ./argo-submits/test-params.yaml --generate-name test-mdavidson-gh-action- " | ||
# with: | ||
# # below is a reference to a YAML file in this repo that defines the workflow. | ||
# workflow_yaml_path: "examples/coinflip.yaml" | ||
# parameter_file_path: "examples/arguments-parameters.yaml" | ||
# Output the Argo URL | ||
- name: test argo outputs | ||
run: echo "Argo URL $WORKFLOW_URL" | ||
env: | ||
WORKFLOW_URL: ${{ steps.argo.outputs.WORKFLOW_URL }} | ||