File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 62
62
run : echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
63
63
- name : Configure Github Package Registry
64
64
run : echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u $GITHUB_ACTOR --password-stdin
65
+
65
66
- name : Install dependencies
66
- run : sudo apt-get install -y wait-for-it
67
+ run : sudo apt-get update -qq && sudo apt-get install -y curl wait-for-it
68
+ - name : Restore cached binaries
69
+ id : cache-binaries-restore
70
+ uses : actions/cache/restore@v3
71
+ with :
72
+ path : .bin
73
+ key : ${{ runner.os }}-binaries
74
+ - name : Install MinIO Client
75
+ run : |
76
+ mkdir .bin || exit 0
77
+ cd .bin
78
+ curl --retry 6 --fail --silent --location --output mc.RELEASE.2023-06-19T19-31-19Z "https://dl.min.io/client/mc/release/linux-$(dpkg --print-architecture)/mc.RELEASE.2023-06-19T19-31-19Z"
79
+ curl --retry 6 --fail --silent --location "https://dl.min.io/client/mc/release/linux-$(dpkg --print-architecture)/mc.RELEASE.2023-06-19T19-31-19Z.sha256sum" | sha256sum --check -
80
+ mv mc.RELEASE.2023-06-19T19-31-19Z mc
81
+ chmod +x mc
67
82
68
83
# Run tests and builds image
69
84
- name : Run tests - latest njs version
You can’t perform that action at this time.
0 commit comments