We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c38f243 commit 62f1b71Copy full SHA for 62f1b71
.github/workflows/build.yml
@@ -0,0 +1,18 @@
1
+name: Build
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Download Turbo Bob
12
+ run: curl --fail --location --output bob https://dl.bintray.com/function61/dl/turbobob/20200101_1536_caf624e6/bob_linux-amd64 && chmod +x bob
13
+ - name: Build with Turbo Bob
14
+ run: CI_REVISION_ID="$GITHUB_SHA" ./bob build --publish-artefacts
15
+ # unfortunately there doesn't seem to be a way to "expose all secrets", so you must
16
+ # list here each secret to pass on to the build
17
+ env:
18
+ DOCKER_CREDS: ${{ secrets.DOCKER_CREDS }}
.travis.yml
0 commit comments