chore: Changed branch name from master to v2.4

This commit is contained in:
Roman Kelesidis 2025-06-19 10:48:20 +03:00
commit cb5c8d81fe
No known key found for this signature in database
GPG key ID: D8157C4D4C4C6DB4
4 changed files with 8 additions and 40 deletions

View file

@ -3,7 +3,7 @@ name: Continuous Integration
on:
push:
branches:
- master
- v2.4
jobs:
nightly:
@ -44,37 +44,5 @@ jobs:
- name: Upload Archive 📤
uses: actions/upload-artifact@v4
with:
name: TorrentPier-master
name: TorrentPier-v2.4
path: ${{ steps.create-zip.outputs.ZIP_NAME }}
deploy:
name: 🎉 Deploy
runs-on: ubuntu-22.04
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: 🔩 Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: Update composer.lock file
run: composer update --no-install
- name: 🖇 Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ${{ secrets.FTP_DIR }}
protocol: ${{ secrets.FTP_PROTOCOL }}
port: ${{ secrets.FTP_PORT }}
exclude: |
**/.git*
**/.git*/**
.env

View file

@ -17,10 +17,10 @@ name: PHPMD
on:
push:
branches: [ "master" ]
branches: [ "v2.4" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
branches: [ "v2.4" ]
schedule:
- cron: '40 0 * * 3'

View file

@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: master
ref: v2.4
token: ${{ secrets.REPO_TOKEN }}
- name: Generate a changelog
@ -32,10 +32,10 @@ jobs:
- name: Commit changelog
run: |
git checkout master
git checkout v2.4
git config --local user.name 'belomaxorka'
git config --local user.email 'roman25052006.kelesh@gmail.com'
set +e
git add CHANGELOG.md
git commit -m "Update CHANGELOG.md 📖"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git master
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git v2.4

View file

@ -23,7 +23,7 @@ body = """
{%- endmacro -%}
{%- macro nightly_url() -%}
https://nightly.link/{{ remote.github.owner }}/{{ remote.github.repo }}/workflows/ci/master/TorrentPier-master
https://nightly.link/{{ remote.github.owner }}/{{ remote.github.repo }}/workflows/ci/v2.4/TorrentPier-v2.4
{%- endmacro -%}
{% macro print_commit(commit) -%}