Skip to content

Instantly share code, notes, and snippets.

@fakabbir
Last active December 27, 2021 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fakabbir/4b26738c68f943b370895e3a4e09a382 to your computer and use it in GitHub Desktop.
Save fakabbir/4b26738c68f943b370895e3a4e09a382 to your computer and use it in GitHub Desktop.
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