Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1110b7a560 | ||
|
|
e907c8c218 | ||
|
|
09a7cb820b | ||
|
|
d6976a5290 | ||
|
|
453e4993b9 |
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -51,7 +51,7 @@ jobs:
|
||||
|
||||
- run: make test
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: tmp/test-results
|
||||
@@ -93,7 +93,7 @@ jobs:
|
||||
|
||||
- run: make test
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: tmp/test-results
|
||||
|
||||
5
Makefile
5
Makefile
@@ -1,5 +1,6 @@
|
||||
HARDWARE = $(shell uname -m)
|
||||
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
|
||||
ARCH = $(shell dpkg --print-architecture)
|
||||
SHFMT_VERSION = 3.0.2
|
||||
XUNIT_TO_GITHUB_VERSION = 0.3.0
|
||||
XUNIT_READER_VERSION = 0.1.0
|
||||
@@ -20,8 +21,12 @@ shellcheck:
|
||||
ifneq ($(shell shellcheck --version >/dev/null 2>&1 ; echo $$?),0)
|
||||
ifeq ($(SYSTEM_NAME),darwin)
|
||||
brew install shellcheck
|
||||
else
|
||||
ifeq ($(ARCH),arm64)
|
||||
sudo add-apt-repository 'deb http://ports.ubuntu.com/ubuntu-ports jammy-backports main restricted universe multiverse'
|
||||
else
|
||||
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse'
|
||||
endif
|
||||
sudo rm -rf /var/lib/apt/lists/* && sudo apt-get clean
|
||||
sudo apt-get update -qq && sudo apt-get install -qq -y shellcheck
|
||||
endif
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[plugin]
|
||||
description = "dokku postgres service plugin"
|
||||
version = "1.36.1"
|
||||
version = "1.36.3"
|
||||
[plugin.config]
|
||||
|
||||
Reference in New Issue
Block a user