Skip to content

Commit

Permalink
ci: fixing pipeline (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3r committed Apr 23, 2020
1 parent b199cb6 commit f8e749b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/publish_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: create docker images
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
make docker-create-all
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+*"
- '[0-9]+.[0-9]+.[0-9]+*'

# pipeline to execute
jobs:
Expand Down Expand Up @@ -37,6 +37,10 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@v2
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: create docker images
run: |
make docker-create-all
Expand Down

0 comments on commit f8e749b

Please sign in to comment.