publish build
All checks were successful
Build and publish container images / build-and-publish (push) Successful in 14m32s
All checks were successful
Build and publish container images / build-and-publish (push) Successful in 14m32s
This commit is contained in:
parent
c506c84987
commit
6f03a6c586
@ -2,7 +2,10 @@
|
||||
name: Build and publish container images
|
||||
|
||||
on:
|
||||
- workflow_dispatch
|
||||
workflow_dispatch: { }
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build-and-publish:
|
||||
|
@ -2,9 +2,10 @@
|
||||
name: Build container images
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch: { }
|
||||
# push:
|
||||
# branches:
|
||||
# - master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -1,5 +1,6 @@
|
||||
|
||||
ARG NODE_VERSION=20
|
||||
ARG RUST_TOOLCHAIN=""
|
||||
|
||||
FROM node:${NODE_VERSION}
|
||||
|
||||
@ -22,7 +23,9 @@ ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc \
|
||||
CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc \
|
||||
CXX_aarch64_unknown_linux_gnu=aarch64-linux-gnu-g++
|
||||
|
||||
RUN rustup toolchain install stable-x86_64-unknown-linux-gnu
|
||||
RUN if test "${RUST_TOOLCHAIN}x" != "x" ; \
|
||||
then rustup toolchain install $RUST_TOOLCHAIN ; \
|
||||
fi
|
||||
|
||||
RUN rustup target add x86_64-pc-windows-gnu
|
||||
RUN rustup target add x86_64-unknown-linux-gnu
|
||||
|
Loading…
x
Reference in New Issue
Block a user