mirror of
https://github.com/nushell/nushell
synced 2024-11-13 16:37:08 +00:00
Fix artifact is missing
Signed-off-by: Fahmi Akbar Wildana <f.a.wildana@gmail.com>
This commit is contained in:
parent
d992086192
commit
99d5dae83a
2 changed files with 2 additions and 2 deletions
2
.github/workflows/docker-publish.yml
vendored
2
.github/workflows/docker-publish.yml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
||||||
- name: Build and publish exact version
|
- name: Build and publish exact version
|
||||||
run: |
|
run: |
|
||||||
REGISTRY=${REGISTRY,,}; export TAG=${GITHUB_REF##*/}-${{ matrix.tag }};
|
REGISTRY=${REGISTRY,,}; export TAG=${GITHUB_REF##*/}-${{ matrix.tag }};
|
||||||
export NU_BINS=target/release/$( [ ${{ matrix.plugin }} ] && nu* || nu )
|
export NU_BINS=target/release/$( [ ${{ matrix.plugin }} = true ] && echo nu* || echo nu )
|
||||||
|
|
||||||
echo ${{ secrets.DOCKER_REGISTRY }} | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
echo ${{ secrets.DOCKER_REGISTRY }} | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
||||||
docker-compose --file docker/docker-compose.package.yml build
|
docker-compose --file docker/docker-compose.package.yml build
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
ARG artifact
|
|
||||||
ARG base
|
ARG base
|
||||||
FROM ${base}
|
FROM ${base}
|
||||||
|
|
||||||
|
ARG artifact
|
||||||
COPY ${artifact} /bin/
|
COPY ${artifact} /bin/
|
||||||
ENTRYPOINT ["nu"]
|
ENTRYPOINT ["nu"]
|
Loading…
Reference in a new issue