Fix error in README.rst #95
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
on: | |
push: | |
branches: [ debug, develop, master ] | |
jobs: | |
build-images: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: marble | |
password: ${{ secrets.DRC_GITHUB_REGISTRY }} | |
- name: Build | |
run: OUR_IMAGE_TAG=develop OUR_IMAGE_SHORT=develop make build | |
- name: Push to ghcr.io | |
run: OUR_IMAGE_TAG=develop make push_to_ghcr | |