Skip to content

Instantly share code, notes, and snippets.

@Aid19801
Last active December 28, 2017 12:18
Show Gist options
  • Save Aid19801/f334236cfd641289c3f9131544c729af to your computer and use it in GitHub Desktop.
Save Aid19801/f334236cfd641289c3f9131544c729af to your computer and use it in GitHub Desktop.
Thu Dec 28 12:18:29 UTC 2017
#!/bin/sh
set -e # fail fast
set -x # print commands
git clone unit-test updated-unit-test
cd updated-unit-test
echo $(date) > bumpme
git config --global user.email "nobody@concourse.ci"
git config --global user.name "Concourse"
git add .
git commit -m "Bumped date"
---
platform: linux
image_resource:
type: docker-image
source: {repository: node}
inputs:
- name: unit-test
- name: sky-tech-conference-app
outputs:
- name: updated-unit-test
run:
user: root
path: ./unit-test/unit-test.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment