Bump nokogiri from 1.14.3 to 1.16.2 #37
Workflow file for this run
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: Build-Docker | |
on: | |
push: | |
paths: | |
- Gemfile* | |
branches: | |
- master | |
pull_request: | |
paths: | |
- Gemfile* | |
jobs: | |
jekyll-fastpages: | |
if: github.repository == 'fastai/fastpages' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: setup directories for Jekyll build | |
run: sudo chmod -R 777 . | |
- name: build container | |
run: | | |
docker build -t fastai/fastpages-jekyll -f _action_files/fastpages-jekyll.Dockerfile . | |
- name: push container | |
if: github.event == 'push' | |
run: | | |
echo ${PASSWORD} | docker login -u $USERNAME --password-stdin | |
docker push fastai/fastpages-jekyll | |
env: | |
USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |