Plugin Directory

Changeset 3259679


Ignore:
Timestamp:
03/21/2025 11:48:23 AM (12 months ago)
Author:
tomaa96
Message:

Deploying new version from Bitbucket

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roxpay-gateway/trunk/bitbucket-pipelines.yml

    r3259678 r3259679  
    11image: alpine
     2
    23pipelines:
    34  branches:
     
    67          name: Deploy to WordPress SVN
    78          script:
    8             - apk add --no-cache subversion rsync
     9            - apk add --no-cache subversion rsync  # Install SVN & rsync
    910            - svn checkout --username $SVN_USERNAME $SVN_DEPLOY_URL svn
    1011            - rsync -r --delete --exclude=".git" --exclude=".bitbucket" ./ svn/trunk/
     
    1213            - svn add --force trunk/*
    1314            - svn commit -m "Deploying new version from Bitbucket" --username $SVN_USERNAME --password $SVN_PASSWORD
    14 
    15 
     15            - svn copy trunk tags/1.0.1  # Create a new tag
     16            - svn commit -m "Tagging version 1.0.1" --username $SVN_USERNAME --password $SVN_PASSWORD
Note: See TracChangeset for help on using the changeset viewer.