We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4213c83 + 39c71a7 commit 5284064Copy full SHA for 5284064
2 files changed
.github/workflows/build.yml
@@ -0,0 +1,20 @@
1
+name: Action CI
2
+
3
+on: [push]
4
5
+jobs:
6
7
+ build:
8
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - name: Build Docker image
14
+ run: docker build . --tag my-image-name:$(date +%s)
15
+ - name: Verify action syntax
16
+ # The action should not publish any real changes, but should succeed.
17
+ uses: './'
18
+ with:
19
+ github_token: '${{ secrets.GITHUB_TOKEN }}'
20
+ branch: '${{ github.ref }}'
.github/workflows/dockerimage.yml
0 commit comments