Skip to content

Commit

Permalink
#474 Put some files under source control
Browse files Browse the repository at this point in the history
  • Loading branch information
uazo committed Mar 9, 2024
1 parent 30bcef4 commit 1cce2f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,14 @@ jobs:
DO_UPDATE=1
fi
elif [ "$RELEASE" != $(CAT src/RELEASE)" ]; then
elif [ "$RELEASE" != "$(CAT src/RELEASE)" ]; then
DO_UPDATE=1
NEW_VERSION=$RELEASE
fi
if [[ DO_UPDATE -eq 1 ]]; then
test -d src && rm -rf src
docker build --no-cache --progress=plain -o . .
docker build --no-cache --progress=plain --build-arg "TAG=$NEW_VERSION" -o . .
echo $NEW_VERSION >src/RELEASE
fi
Expand Down
3 changes: 2 additions & 1 deletion tools/under-control/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM uazo/chromium:122.0.6261.111 AS source
ARG TAG=latest
FROM uazo/chromium:${TAG} AS source

ENV CHR_SOURCE_DIR=/home/lg/working_dir/chromium/src/
ENV OUTPUT_DIR=/home/lg/working_dir/out/
Expand Down

0 comments on commit 1cce2f1

Please sign in to comment.