Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package update… #12

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docker-image-Laravel.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: Create and publish Backend Docker image
on:
push:
branches: [ "master", "develop"]
branches: [ "master", "develop", "feature/*"]
pull_request:
branches: [ "master" ]
branches: [ "master"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
TAG_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -40,7 +39,8 @@ jobs:
- name: Install dependencies
env:
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{secrets.COMPOSER_AUTH}}"} }' # [tl! **]
run: composer install --prefer-dist --no-suggest --no-progress
run: composer install --prefer-dist --no-suggest --no-progress
&& npm install && npm run build && npm prune --production
# env:
# COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{secrets.COMPOSER_AUTH}}"} }' # [tl! **]
# run: npm install && npm run build && npm prune --production
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-image-Nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ env:
TAG_NAME: ${{ github.repository }}
on:
push:
branches: [ "master", "develop"]
branches: [ "master", "develop", "feature/*"]
pull_request:
branches: [ "master" ]
branches: [ "master"]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
Loading
Loading