Merge pull request #7 from mdiluz/allow-choose-image-tag
A few small fixups
This commit is contained in:
commit
e577cea62a
3 changed files with 5 additions and 5 deletions
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Create and publish a Docker image
|
name: Build and Push Docker
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -16,7 +16,7 @@ env:
|
||||||
|
|
||||||
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
|
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push-image:
|
build-and-push-images:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
|
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -1,9 +1,9 @@
|
||||||
name: Test
|
name: Run Tests
|
||||||
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
services:
|
services:
|
||||||
matchy:
|
matchy:
|
||||||
image: ghcr.io/mdiluz/matchy:latest
|
image: ghcr.io/mdiluz/matchy:${MATCHY_TAG:-latest}
|
||||||
env_file: ".env"
|
env_file: ".env"
|
||||||
volumes:
|
volumes:
|
||||||
- ${MATCHY_DATA:-./.matchy}:/usr/src/app/.matchy
|
- ${MATCHY_DATA:-./.matchy}:/usr/src/app/.matchy
|
Loading…
Add table
Reference in a new issue