fix conda dockerfile #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: R packages from pak | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build -f pak.Dockerfile -t my-pak-name . | |
- run: docker run --rm --name my_pak_container -v /github/workspace/output/:/workspace/output/:rw my-pak-name | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: /github/workspace/output/ |