chore: disabled other actions

This commit is contained in:
SamTV12345 2025-08-02 13:37:12 +02:00
parent a9b578e111
commit 2bfcbca58c
13 changed files with 12 additions and 0 deletions

View file

@ -18,12 +18,24 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
working-directory: etherpad
with: with:
repository: ether/etherpad-lite repository: ether/etherpad-lite
path: etherpad path: etherpad
token: '${{ secrets.ETHER_RELEASE_TOKEN }}' token: '${{ secrets.ETHER_RELEASE_TOKEN }}'
fetch-depth: '0' fetch-depth: '0'
fetch-tags: 'true' fetch-tags: 'true'
- name: Checkout master
run: |
git fetch origin master
git checkout master
git reset --hard origin/master
- name: Checkout develop
working-directory: etherpad
run: |
git fetch origin develop
git checkout develop
git reset --hard origin/develop
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with: