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 a62c99a commit 79d6aa3Copy full SHA for 79d6aa3
.github/workflows/main.yml
@@ -22,3 +22,13 @@ jobs:
22
- run: npm run test
23
env:
24
CI: true
25
+
26
+ docker:
27
+ runs-on: ubuntu-latest
28
29
+ steps:
30
+ - uses: actions/checkout@v2
31
+ with:
32
+ fetch-depth: 1
33
+ - name: Build docker image
34
+ run: docker build -t relekang/graphql-rss-parser:${{ github.sha }}
.github/workflows/upload-docker.yml
@@ -14,7 +14,7 @@ jobs:
14
with:
15
fetch-depth: 1
16
- name: Build docker image
17
- run: docker build -t relekang/graphql-rss-parser:${GITHUB_REF##*/} .
+ run: docker build -t relekang/graphql-rss-parser:${GITHUB_REF##*/}
18
- name: Tag latest image
19
run: docker tag relekang/graphql-rss-parser:${GITHUB_REF##*/} relekang/graphql-rss-parser:latest
20
- name: Login to DockerHub Registry
0 commit comments