Compare commits

..

7 Commits

Author SHA1 Message Date
DTFB-PaulF 5a25f6d398 Merge pull request #53 from Deutscher-Tischfussballbund/dev
paul: bugfix player import no update for spieler_nr
2024-11-17 13:10:24 +01:00
Helmut Poppen 322906ff70 Merge branch 'dev' into production
# Conflicts:
#	src/structure/language/de-DE/de-DE.com_sportsmanager.ini
2024-11-15 13:19:57 +01:00
Stefan Wendhausen 935f8ef7d8 Update de-DE.com_sportsmanager.ini
Test action
2024-08-06 20:45:55 +02:00
Stefan Wendhausen 92785965b2 Create kickernprod.yml 2024-08-06 20:28:34 +02:00
Stefan Wendhausen 405f030364 Create dtfbprod.yml 2024-08-06 20:27:39 +02:00
Helmut Poppen a9b088dcda Merge pull request #44 from Deutscher-Tischfussballbund/dev
Fixed table width for Turnierergebnisse
2023-07-01 13:11:20 +02:00
Tim 5c089a4325 Merge pull request #41 from Deutscher-Tischfussballbund/dev
Release Jan 2023
2023-01-16 15:19:27 +01:00
3 changed files with 46 additions and 39 deletions
-39
View File
@@ -1,39 +0,0 @@
# This workflow will run release using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Snapshot Release
on:
push:
tags:
- 'v*-snapshot' # run only on version tags like v1.0.0-snapshot
# - 'v*' # Run only on version tags like v1.0.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: sportsmanager2-stage
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install npm dependencies
run: npm ci
- name: Run build script
run: npm run release
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
prerelease: true
name: SNAPSHOT
files: package/packages/com_sportsmanager.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+23
View File
@@ -0,0 +1,23 @@
name: Deploy production branch to dtfb.de
on:
push:
branches: ['production']
paths: ['src/structure/**']
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: rsync deployments
uses: burnett01/rsync-deployments@7.0.1
with:
switches: -avzr
path: src/structure/
remote_path: ${{ secrets.DTFB_PROD_PATH }}
remote_host: ${{ secrets.DTFB_PROD_HOST }}
remote_port: ${{ secrets.DTFB_PROD_PORT }}
remote_user: ${{ secrets.DTFB_PROD_USER }}
remote_key: ${{ secrets.DTFB_PROD_KEY }}
+23
View File
@@ -0,0 +1,23 @@
name: Deploy production branch to kickern-hamburg.de
on:
push:
branches: ['production']
paths: ['src/structure/**']
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: rsync deployments
uses: burnett01/rsync-deployments@7.0.1
with:
switches: -avzr
path: src/structure/
remote_path: ${{ secrets.KICKERN_PROD_PATH }}
remote_host: ${{ secrets.KICKERN_PROD_HOST }}
remote_port: ${{ secrets.KICKERN_PROD_PORT }}
remote_user: ${{ secrets.KICKERN_PROD_USER }}
remote_key: ${{ secrets.KICKERN_PROD_KEY }}