Skip to content

Commit

Permalink
Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben committed Jul 27, 2023
1 parent ce33ca4 commit c99fb4f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ runs:
env:
GH_TOKEN: ${{ github.token }}
run: |
gh repo clone cgs-earth/yourls-action
gh release download 0.3.0 -R cgs-earth/yourls-action -A zip
unzip yourls-action-0.3.0
mv yourls-action-0.3.0 yourls-action
- shell: bash
env:
YOURLS_SOURCE: ${{ inputs.namespace_dir }}
Expand Down
8 changes: 6 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ version: '3.6'

services:
mysql:
image: ghcr.io/cgs-earth/yourls-mysql:latest
image: ghcr.io/cgs-earth/yourls-mysql:0.3.0
build:
context: yourls-mysql
container_name: ${YOURLS_DB_HOST:-mysql}
environment:
MYSQL_ROOT_USER: ${YOURLS_DB_USER:-root}
MYSQL_ROOT_PASSWORD: ${YOURLS_DB_PASSWORD:-arootpassword}
yourls:
image: ghcr.io/cgs-earth/yourls-action:latest
image: ghcr.io/cgs-earth/yourls-action:0.3.0
build:
context: yourls-action
container_name: yourls-action
environment:
YOURLS_DB_USER: ${YOURLS_DB_USER:-root}
Expand Down
2 changes: 1 addition & 1 deletion yourls-action/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
click
mysql-connector
mysql-connector-python
requests
2 changes: 1 addition & 1 deletion yourls-action/yourls_action/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#
# =================================================================

__version__ = '0.1.0'
__version__ = '0.3.0'

import click

Expand Down

0 comments on commit c99fb4f

Please sign in to comment.