Skip to content

Commit c99fb4f

Browse files
committed
Release version 0.3.0
1 parent ce33ca4 commit c99fb4f

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ runs:
5454
env:
5555
GH_TOKEN: ${{ github.token }}
5656
run: |
57-
gh repo clone cgs-earth/yourls-action
57+
gh release download 0.3.0 -R cgs-earth/yourls-action -A zip
58+
unzip yourls-action-0.3.0
59+
mv yourls-action-0.3.0 yourls-action
5860
- shell: bash
5961
env:
6062
YOURLS_SOURCE: ${{ inputs.namespace_dir }}

docker-compose.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@ version: '3.6'
22

33
services:
44
mysql:
5-
image: ghcr.io/cgs-earth/yourls-mysql:latest
5+
image: ghcr.io/cgs-earth/yourls-mysql:0.3.0
6+
build:
7+
context: yourls-mysql
68
container_name: ${YOURLS_DB_HOST:-mysql}
79
environment:
810
MYSQL_ROOT_USER: ${YOURLS_DB_USER:-root}
911
MYSQL_ROOT_PASSWORD: ${YOURLS_DB_PASSWORD:-arootpassword}
1012
yourls:
11-
image: ghcr.io/cgs-earth/yourls-action:latest
13+
image: ghcr.io/cgs-earth/yourls-action:0.3.0
14+
build:
15+
context: yourls-action
1216
container_name: yourls-action
1317
environment:
1418
YOURLS_DB_USER: ${YOURLS_DB_USER:-root}

yourls-action/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
click
2-
mysql-connector
2+
mysql-connector-python
33
requests

yourls-action/yourls_action/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#
2828
# =================================================================
2929

30-
__version__ = '0.1.0'
30+
__version__ = '0.3.0'
3131

3232
import click
3333

0 commit comments

Comments
 (0)