Skip to content

Commit

Permalink
adds docker-build.yml debugging statements and sets individual gh act…
Browse files Browse the repository at this point in the history
…ions to known version numbers
  • Loading branch information
livebe01 authored Feb 2, 2024
1 parent 984401b commit 8d5ffc4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
container: docker://metanorma/mn
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install gems from local Gemfile
run: |
curl -LO --retry 3 https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/gemfile-to-bundle-add.sh | bash
Expand All @@ -23,7 +23,7 @@ jobs:
run: |
make clean all publish
working-directory: ./src
- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v4
with:
name: documents
path: ./src/documents
Expand All @@ -33,10 +33,16 @@ jobs:
runs-on: ubuntu-latest
needs: build-docker
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Display file structure
run: ls -R
- uses: actions/download-artifact@master
- name: Make a directory for the artifact
run: mkdir documents
- name: Discover the current directory
run: cd ~
- name: Discover the current directory
run: pwd
- uses: actions/download-artifact@v4
with:
name: documents
- name: Display file structure
Expand Down

0 comments on commit 8d5ffc4

Please sign in to comment.