diff options
-rw-r--r-- | .github/workflows/release-aur.yml | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/release-aur.yml b/.github/workflows/release-aur.yml deleted file mode 100644 index e9b474a..0000000 --- a/.github/workflows/release-aur.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Release to AUR - -on: - workflow_dispatch: - push: - branches: [master] - -jobs: - tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Print pkgver - run: echo "::set-output name=PKGVER::"`printf "%s.r%s.%s" "$(grep -F '__version__ =' epy.py | awk -F\" '{print $2}')" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"` - id: pkgver - - name: test - run: echo "pkgver: ${{ steps.pkgver.outputs.PKGVER }}" - |