From b8cb278a29b82deb897d23a2864229b797d3fc10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnas=20Gec=CC=8Cas?= Date: Fri, 9 Feb 2024 09:11:24 +0200 Subject: [PATCH] Update github workflow --- .github/workflows/release-plugin.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) 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