Skip to content

Commit

Permalink
chore(ci): update cli workflow (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks committed Aug 2, 2024
1 parent b4b97d9 commit c4fb13b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

publish:
needs: test
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/master' && contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name) && github.repository_owner == 'supabase-community' }}
if: ${{ !startsWith(github.event.head_commit.message, 'bump') && !startsWith(github.event.head_commit.message, 'chore') && github.ref == 'refs/heads/master' && contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name) && github.repository_owner == 'supabase' }}
runs-on: ubuntu-latest
name: "Bump version, create changelog and publish"
environment:
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ tests_only:

run_infra:
cd infra &&\
docker-compose down &&\
docker-compose up -d
docker compose down &&\
docker compose up -d

clean_infra:
cd infra &&\
docker-compose down --remove-orphans &&\
docker compose down --remove-orphans &&\
docker system prune -a --volumes -f

stop_infra:
cd infra &&\
docker-compose down --remove-orphans
docker compose down --remove-orphans

run_tests: run_infra sleep tests

Expand Down

0 comments on commit c4fb13b

Please sign in to comment.