Skip to content

Commit

Permalink
Merge branch 'release/0.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler committed Jan 14, 2022
2 parents 677a64c + 6f9e5e2 commit b5a49c0
Show file tree
Hide file tree
Showing 11 changed files with 172 additions and 160 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ on:
push:
tags:
- '*'
branches:
- develop
workflow_dispatch:

# Prevents concurrent deployments
Expand Down Expand Up @@ -44,7 +42,7 @@ jobs:
deployer-version: '7.0.0-rc.3'

dev:
if: ${{ github.ref_name == 'develop' || github.event_name == 'workflow_dispatch' }}
if: ${{ github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-20.04
environment:
name: dev
Expand Down Expand Up @@ -72,5 +70,5 @@ jobs:
with:
private-key: ${{ secrets.SSH_PRIVATE_KEY }}
known-hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
dep: deploy dev
dep: deploy dev --branch ${{ github.ref_name }}
deployer-version: '7.0.0-rc.3'
127 changes: 62 additions & 65 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions config/packages/prod/webpack_encore.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#webpack_encore:
webpack_encore:
# Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes)
# Available in version 1.2
#cache: true
cache: true
2 changes: 1 addition & 1 deletion config/packages/webpack_encore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ webpack_encore:
# 'data-turbo-track': reload

# If using Encore.enableIntegrityHashes() and need the crossorigin attribute (default: false, or use 'anonymous' or 'use-credentials')
# crossorigin: 'anonymous'
crossorigin: 'anonymous'

# Preload all rendered script and link tags automatically via the HTTP/2 Link header
# preload: true
Expand Down
2 changes: 1 addition & 1 deletion deploy.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
->set('writable_mode', 'chmod')
->set('deploy_path', '~/html/pre.typo3-badges.dev')
->add('shared_files', ['.htaccess'])
->add('env', ['APP_ENV' => 'dev'])
->add('env', ['APP_ENV' => 'prod'])
;

// Tasks
Expand Down
Loading

0 comments on commit b5a49c0

Please sign in to comment.