We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df345e5 commit 6e41ee5Copy full SHA for 6e41ee5
.github/workflows/deploy.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
build:
10
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
- name: Deploy Image
.github/workflows/test.yml
@@ -0,0 +1,18 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
+ pull_request:
+ types: [opened, synchronize]
+jobs:
+ build:
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Build Image
16
+ run: bash scripts/build.sh
17
+ env:
18
+ NAME: latest
0 commit comments