Skip to content

Commit

Permalink
Merge pull request #60 from silinternational/ci-changes
Browse files Browse the repository at this point in the history
Release 1.11.3 -- push major version tag
  • Loading branch information
briskt authored Oct 29, 2024
2 parents a66f3c9 + 12320a9 commit c5739d3
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @silinternational/php-devs
34 changes: 34 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
paste_backlog_issue_link_here

---

### Added
-

### Changed (non-breaking)
-

### Changed (BREAKING)
-

### Deprecated
-

### Removed
-

### Fixed
-

### Security
-

---

### PR Checklist

- [ ] Put version number in PR title (e.g. `Release x.y.z - Summary of changes`)
- [ ] Documentation (README, local.env.dist, api.raml, etc.)
- [ ] Tests created or updated
- [ ] Run `make composershow`
- [ ] Run `make psr2`
1 change: 1 addition & 0 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
type=ref,event=branch # Tag with branch name
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
Expand Down
15 changes: 5 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
services:
data:
image: silintl/data-volume:latest
volumes:
- ./application:/data

db:
image: mariadb:10
Expand All @@ -13,8 +9,8 @@ services:

app:
build: ./
volumes_from:
- data
volumes:
- ./application:/data
ports:
- "8888:80"
depends_on:
Expand All @@ -30,8 +26,8 @@ services:

cron:
build: ./
volumes_from:
- data
volumes:
- ./application:/data
depends_on:
- db
env_file:
Expand All @@ -51,8 +47,7 @@ services:
build: ./
volumes:
- ${COMPOSER_CACHE_DIR}:/composer
volumes_from:
- data
- ./application:/data
working_dir: /data
environment:
COMPOSER_CACHE_DIR: /composer
Expand Down

0 comments on commit c5739d3

Please sign in to comment.