My task is simple - i want deploy changes files for only branches. I created gitlab-ci.yml file with code:
stages: # List of stages for jobs, and their order of execution
- deploy
deploy-job: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
except:
- master
script:
- pbifiles=$(git diff --name-only HEAD HEAD~1 -- '***.pbix')
for pbifile in pbifiles; do
echo "Publishin $pbifile to BI-Test...."
python UploadPBITest.py --files $pbifile
But when i push Commit changes to master, i see on the top message: Checking pipeline status
In pipeline,jobs tabs i don’t see nothing