Skip to content

Commit

Permalink
[TASK] Add publish to TER github action
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschaufi committed Dec 19, 2021
1 parent f74b894 commit 1732a52
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Publish

on:
push:
tags:
- "**"

jobs:
publish:
runs-on: ubuntu-20.04
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Publish new version to TER"
uses: tomasnorre/typo3-upload-ter@v2
with:
api-token: ${{ secrets.TYPO3_API_TOKEN }}
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: tests

on: [push, pull_request]
on:
push:
branches:
- 7.6
pull_request:
branches:
- 7.6

jobs:
tests:
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
},
"extra": {
"typo3/cms": {
"extension-key": "extension_builder",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/public"
Expand Down

0 comments on commit 1732a52

Please sign in to comment.