Skip to content

Commit

Permalink
Production patch release (#111)
Browse files Browse the repository at this point in the history
* Update prod-build.yml

Workaround for ButlerLogic/action-autotag#45

* initial stripe changes

* order by descending subscription end date to get the latest entry

* fix github action for artifact registry

* fix invite link

* patch release

* fix patch version

* patch version

* cancel subscriptions

* implement subscription cancellation

* change insights to labs

* fix unit test github action

* patch version

---------

Co-authored-by: Greg Lind <greg@buildly.io>
Co-authored-by: Peter Odeny <odenypeter@gmail.com>
  • Loading branch information
3 people authored Aug 26, 2024
1 parent 96777e5 commit 94e06ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Build the docker-compose stack
run: docker-compose build
- name: Build the docker compose stack
run: docker compose build

- name: Setup docker containers
run: docker-compose up -d
run: docker compose up -d

- name: Check running containers
run: docker ps -a

- name: Run unit test case
run: docker-compose run --entrypoint '/usr/bin/env' --rm buildly bash scripts/run-tests.sh --keepdb
run: docker compose run --entrypoint '/usr/bin/env' --rm buildly bash scripts/run-tests.sh --keepdb

- name: Stop docker container
run: docker-compose down
run: docker compose down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ EXPOSE 8080
ENTRYPOINT ["bash", "/code/scripts/docker-entrypoint.sh"]

# Specify tag name to be created on github
LABEL version="0.9.0"
LABEL version="0.9.1"

0 comments on commit 94e06ba

Please sign in to comment.