Last active
December 27, 2021 06:55
-
-
Save fakabbir/4b26738c68f943b370895e3a4e09a382 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
stages: # List of stages for jobs, and their order of execution | |
- build | |
build-job: # This job runs in the build stage, which runs first. | |
stage: build | |
script: | |
- echo "Compiling the code..." | |
- echo "Compile complete." | |
- ls | |
- cp ./README.md ../ | |
- cd ../ | |
- ls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment