Skip to content

Update README to reflect correct Docker image name #32

Update README to reflect correct Docker image name

Update README to reflect correct Docker image name #32

# This is a basic workflow to help you get started with Actions

Check failure on line 1 in .github/workflows/weekly-devel-builder.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/weekly-devel-builder.yml

Invalid workflow file

(Line: 6, Col: 4): Unexpected value ''
name: weekly-systempipe-docker-latest-builder
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
# schedule:
# - cron: '0 18 * * 6'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: sh .scripts/weekly_build.sh
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}