Skip to content

Commit 0f357a7

Browse files
committed
chore(ci): set artifact name from pkg
1 parent 647f506 commit 0f357a7

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
needs: [image]
2828
container: mpsq/emacs-native-comp-wayland-builder:latest
2929
steps:
30+
- name: Get name
31+
run: |
32+
echo "emacs_artifact_name=$(ls /home/pcr)" >> $GITHUB_ENV
3033
- uses: actions/upload-artifact@v2
3134
with:
32-
name: emacs-native-comp-git-enhanced
33-
path: /home/pcr/emacs-native-comp-git-enhanced*
35+
name: ${{ env.emacs_artifact_name }}
36+
path: /home/pcr/${{ env.emacs_artifact_name }}

Dockerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,3 @@ FROM mpsq/emacs-native-comp-wayland-builder:latest
88
# --noinstall \
99
# --movepkg-dir=/home/pcr \
1010
# -S emacs-native-comp-git-enhanced
11-
12-
USER root
13-
14-
RUN mkdir -p /github/workspace && \
15-
cp /home/pcr/emacs*.zst /github/workspace

0 commit comments

Comments
 (0)