fix(docker): Use pak to install plumber (#1007)
#282
Workflow file for this run
This file contains hidden or 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: Docker | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "rc-v**" | |
| - "docker**" | |
| schedule: | |
| - cron: '0 0 1 * *' # first of every month | |
| workflow_dispatch: | |
| jobs: | |
| docker: | |
| name: ${{ matrix.config.tags }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| r_version: | |
| - "latest" | |
| config: | |
| - name: "v1.3.0" | |
| # always overwrite the latest version with the CRAN version | |
| tags: "v1.3.0,latest" | |
| ref: "v1.3.0" | |
| - name: "v1.2.0" | |
| tags: "v1.2.0" | |
| ref: "v1.2.0" | |
| - name: "v1.1.0" | |
| tags: "v1.1.0" | |
| ref: "v1.1.0" | |
| - name: "v1.0.0" | |
| tags: "v1.0.0" | |
| ref: "v1.0.0" | |
| # always rebuild legacy to pick up newer R library builds | |
| - name: "v0.4.6" | |
| tags: "v0.4.6" | |
| ref: "v0.4.6" | |
| extra_buildargs: ",ENTRYPOINT_FILE=/usr/local/lib/R/site-library/plumber/examples/04-mean-sum/plumber.R" | |
| - name: GitHub | |
| # 'next' tag signifies the _next_ release | |
| tags: "next" | |
| ref: "main" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| # https://github.com/marketplace/actions/publish-docker | |
| - name: rstudio/plumber | |
| uses: elgohr/Publish-Docker-Github-Action@v5 | |
| with: | |
| name: rstudio/plumber | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| cache: false | |
| workdir: "." | |
| buildargs: "R_VERSION=${{ matrix.r_version }},PLUMBER_REF=${{ matrix.config.ref }}${{ matrix.config.extra_buildargs }}" | |
| tags: ${{ matrix.config.tags }} |