Skip to content

Commit 6ce2594

Browse files
author
Agus Makmun
committed
fix: failed to build docker image on push to dockerhub job v2
1 parent 2d6b17b commit 6ce2594

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed

.github/workflows/push-image.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ jobs:
1818
uses: actions/checkout@v2
1919

2020
- name: Set Docker tag
21+
env:
22+
DOCKER_TAG: ${{ github.ref }}
2123
run: |
22-
DOCKER_TAG=${{ github.ref }}
2324
DOCKER_TAG=${DOCKER_TAG#refs/tags/}
2425
DOCKER_TAG=${DOCKER_TAG/\//-}
25-
echo ::set-env name=DOCKER_TAG::$DOCKER_TAG
26+
echo "DOCKER_TAG=$DOCKER_TAG" >> $GITHUB_ENV
2627
2728
- name: Build Docker image
2829
run: docker build -t $DOCKER_HUB_USERNAME/django-markdown-editor:$DOCKER_TAG .
@@ -34,4 +35,4 @@ jobs:
3435
password: $DOCKER_HUB_PASSWORD
3536

3637
- name: Push Docker image
37-
run: docker push $DOCKER_HUB_USERNAME/django-markdown-editor:$DOCKER_TAG
38+
run: docker push $DOCKER_HUB_USERNAME/django-markdown-editor:$DOCKER_TAG

martor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
__VERSION__ = "1.6.21"
3+
__VERSION__ = "1.6.22"
44
__RELEASE_DATE__ = "20-Mar-2023"
55
__AUTHOR__ = "Agus Makmun (Summon Agus)"
66
__AUTHOR_EMAIL__ = "[email protected]"

martor/static/martor/css/martor-admin.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

martor/static/martor/css/martor.bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

martor/static/martor/css/martor.semantic.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

martor/static/martor/js/martor.bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Name : Martor v1.6.21
2+
* Name : Martor v1.6.22
33
* Created by : Agus Makmun (Summon Agus)
44
* Release date : 20-Mar-2023
55
* License : GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007

martor/static/martor/js/martor.bootstrap.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

martor/static/martor/js/martor.semantic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Name : Martor v1.6.21
2+
* Name : Martor v1.6.22
33
* Created by : Agus Makmun (Summon Agus)
44
* Release date : 20-Mar-2023
55
* License : GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007

martor/static/martor/js/martor.semantic.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)