Guest User

Untitled

a guest
Mar 24th, 2020
447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.31 KB | None | 0 0
  1. setup:
  2.   image: ubuntu:latest
  3.   stage: setup
  4.   script:
  5.    - apt update
  6.     - apt install git-restore-mtime -y
  7.     - ls -la
  8.     # This command restores the modified timestamps from commits
  9.     - /usr/lib/git-core/git-restore-mtime
  10.     - ls -la
  11.   artifacts:
  12.     paths:
  13.      - '*'
  14.     expire_in: 1 hour
Add Comment
Please, Sign In to add comment