Skip to content

Commit

Permalink
ci: add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Murzbul committed Dec 8, 2023
1 parent 9b36bcb commit fce5a8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}

if: "!contains(github.event.head_commit.message, 'chore(release):')"
steps:

- uses: actions/checkout@v4
Expand Down Expand Up @@ -54,7 +55,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
ci:
name: CI
runs-on: ubuntu-latest

if: "!contains(github.event.head_commit.message, 'chore(release):')"
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ with these tables.
* users_has_roles
* roles_has_permissions

And a function call `get_authorization` with ...
And a function call `get_authorization`.

## Advantages

Expand Down

0 comments on commit fce5a8d

Please sign in to comment.