Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias K <6317548+theCalcaholic@users.noreply.github.com>2022-05-05 20:01:49 +0300
committerTobias K <6317548+theCalcaholic@users.noreply.github.com>2022-05-05 20:03:04 +0300
commit246b6404fbacbf97dd8aa0d410499dfe28f2f309 (patch)
tree6b912b2afffca0f2452a331cc2a58ed36e93d390
parent244a10413a30d0cb9e7f3960ad371dddbb9fbcfd (diff)
build-docker.yml: Fix release condition
Signed-off-by: Tobias K <6317548+theCalcaholic@users.noreply.github.com>
-rw-r--r--.github/workflows/build-docker.yml2
-rw-r--r--changelog.md3
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml
index 6711bb99..8571f9af 100644
--- a/.github/workflows/build-docker.yml
+++ b/.github/workflows/build-docker.yml
@@ -117,7 +117,7 @@ jobs:
release:
needs:
- test
- if: ${{ github.event_name == 'push' && github.github.ref_type == 'tag' }}
+ if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
diff --git a/changelog.md b/changelog.md
index 1656e460..c35ae2c2 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,4 +1,5 @@
-[v1.47.2](https://github.com/nextcloud/nextcloudpi/commit/1f58fa7) (2022-05-05) docker-build.yml: Add CI/CD integration tests for docker images
+
+[v1.47.2](https://github.com/nextcloud/nextcloudpi/commit/b66ce17) (2022-05-05) build-docker.yml: Fix release condition
[v1.47.1 ](https://github.com/nextcloud/nextcloudpi/commit/9663ef7) (2022-04-13) system_tests.py: Remove deprecated wicd_curses check
|