Skip to content

Commit

Permalink
Merge #646
Browse files Browse the repository at this point in the history
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 <emil.gardstrom@gmail.com>
  • Loading branch information
bors[bot] and Emilgardis authored Mar 14, 2022
2 parents 5a0260b + a0b9f50 commit 8704050
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v2

- name: Changelog updated
uses: Zomzog/changelog-checker@v1.1.0
uses: Zomzog/changelog-checker@v1.2.0
with:
fileName: CHANGELOG.md
env:
Expand Down
4 changes: 3 additions & 1 deletion build-docker-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ run() {

if "${push}"; then
build_args+=(--push)
else
build_args+=(--load)
fi

local dockerfile="Dockerfile.${2}"
Expand Down Expand Up @@ -64,7 +66,7 @@ run() {
;;
esac

build_args+=(--pull --load)
build_args+=(--pull)

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

0 comments on commit 8704050

Please sign in to comment.