Skip to content

Commit 3a3c6f6

Browse files
update
1 parent 2bb273b commit 3a3c6f6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121

2222
- uses: mattnotmitt/[email protected]
2323

24+
- run: find .
25+
2426
# - run: make build
2527

2628
- uses: ruby/setup-ruby@v1
@@ -34,6 +36,8 @@ jobs:
3436
#- run: bundle install
3537

3638
- run: cd src && JEKYLL_ENV=production bundle exec jekyll build
39+
40+
- run: find .
3741

3842
# - uses: ruby/setup-ruby@v1
3943
# with:

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@ FROM ruby:3
22
#-slim
33

44
WORKDIR /srv/jekyll
5-
COPY Gemfile .
5+
COPY src/Gemfile .
66
EXPOSE 4000
77

88
ARG DEBIAN_FRONTEND=noninteractive
99
RUN apt-get update \
1010
&& apt-get -y install build-essential \
11-
&& gem install bundler \
1211
&& bundle install \
1312
&& apt-get -y clean \
1413
&& apt-get -y purge build-essential \
1514
&& apt-get -y autoremove \
1615
&& rm -rf /var/lib/apt/lists/*
16+
17+
18+
# && gem install bundler \

0 commit comments

Comments
 (0)