Skip to content

Commit 8704050

Browse files
Merge #646
646: don't push and load at the same time r=reitermarkus a=Emilgardis https://github.com/cross-rs/cross/actions/runs/1978039245 merge of #609 failed, this should fix that Co-authored-by: Emil Gardström <[email protected]>
2 parents 5a0260b + a0b9f50 commit 8704050

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v2
1313

1414
- name: Changelog updated
15-
uses: Zomzog/changelog-checker@v1.1.0
15+
uses: Zomzog/changelog-checker@v1.2.0
1616
with:
1717
fileName: CHANGELOG.md
1818
env:

build-docker-image.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ run() {
2323

2424
if "${push}"; then
2525
build_args+=(--push)
26+
else
27+
build_args+=(--load)
2628
fi
2729

2830
local dockerfile="Dockerfile.${2}"
@@ -64,7 +66,7 @@ run() {
6466
;;
6567
esac
6668

67-
build_args+=(--pull --load)
69+
build_args+=(--pull)
6870

6971
if [[ -n "${GITHUB_ACTIONS-}" ]]; then
7072
build_args+=(

0 commit comments

Comments
 (0)