Merge branch 'main' of github.com:TykTechnologies/tyk-cicd-dev-demo #1
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: API and Policy Promotion | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
env-promotion: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the current repo and fetch only the current commits (JTBD) | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
# List the content that exists within the repo to validate the files | |
- name: 'List Repository Contents' | |
run: | | |
ls -la | |
pwd |