summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2021-12-17 14:41:28 +0100
committerGitHub <noreply@github.com>2021-12-17 14:41:28 +0100
commit5fd5d688d93d65b1079906e92eb31da65917b98d (patch)
treeb698575666dee363eb459f55a7a3f7b008bdeb22
parent71897c26fb5fd84a66956fb9243eb21ffe511d28 (diff)
parentcdf914cca836f2550de60a6d5ae1cd4e91fbc4b7 (diff)
Merge pull request #2567 from nextcloud/fix/release-automationv4.0.1
Fix release automation
-rw-r--r--.github/workflows/appstore-build-publish.yml7
-rw-r--r--Makefile2
2 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/appstore-build-publish.yml b/.github/workflows/appstore-build-publish.yml
index b3e6a0f5..68c275ac 100644
--- a/.github/workflows/appstore-build-publish.yml
+++ b/.github/workflows/appstore-build-publish.yml
@@ -20,14 +20,9 @@ jobs:
if: ${{ github.repository_owner == 'nextcloud-releases' }}
steps:
- - name: Check actor permission
- uses: skjnldsv/check-actor-permission@v2
- with:
- require: admin
-
- name: Set app env
run: |
- # Split and keep last
+ # Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV
diff --git a/Makefile b/Makefile
index 40c19329..c056d9d4 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ project_directory=$(CURDIR)/../$(app_name)
build_tools_directory=$(CURDIR)/build/tools
source_build_directory=$(CURDIR)/build/artifacts/source
source_package_name=$(source_build_directory)/$(app_name)
-appstore_build_directory=$(CURDIR)/build/artifacts/appstore
+appstore_build_directory=$(CURDIR)/build/artifacts
appstore_package_name=$(appstore_build_directory)/$(app_name)
all: dev-setup lint build-js-production install-composer-deps-dev test-php