diff --git a/.github/workflows/release-plugin.yml b/.github/workflows/release-plugin.yml index 1f84de7..066135e 100644 --- a/.github/workflows/release-plugin.yml +++ b/.github/workflows/release-plugin.yml @@ -1,19 +1,16 @@ name: Release plugin on: [workflow_dispatch] - jobs: - svn: - name: Release new tag - runs-on: [self-hosted, development] - steps: - - name: Install SVN - run: apt-get update && apt-get install -y subversion - - uses: actions/checkout@master - - name: WordPress Plugin Deploy - uses: omnisend/action-wordpress-plugin-deploy@v1.0.3 - env: - SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} - SVN_USERNAME: ${{ secrets.SVN_USERNAME }} - SLUG: omnisend - BUILD_DIR: omnisend + svn: + name: Release new tag + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@main + - name: WordPress Plugin Deploy + uses: omnisend/action-wordpress-plugin-deploy@v1.0.3 + env: + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + SLUG: omnisend + BUILD_DIR: omnisend