Skip to content

Commit

Permalink
Solved yml issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoepr committed Aug 25, 2022
1 parent 1cd29e0 commit 78ff52d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ jobs:
with:
password: ${{ secrets.PYPI_API_TOKEN }}

- name: Docker login
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Build the Docker image
run: docker build . --file Dockerfile --tag tiagoepr/mllp-https:$(github.ref)


- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand Down Expand Up @@ -70,15 +80,7 @@ jobs:
asset_name: ${{ env.name }}
asset_content_type: application/zip

- name: Docker login
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Build the Docker image
run: docker build . --file Dockerfile --tag tiagoepr/mllp-https:$(github.ref)





Expand Down
2 changes: 1 addition & 1 deletion mllp_http_https/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.7"
__version__ = "1.2.8"

0 comments on commit 78ff52d

Please sign in to comment.