Added GitHub workflow to build and deploy synthesis into GitHub Packages #2
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 and publish synthesis | |
on: [push] | |
jobs: | |
synthesis-docker-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build the synthesis Docker image | |
run: | | |
docker build -f recipes/synthesis -t ghcr.io/pyfpga/synthesis . | |
docker push ghcr.io/pyfpga/synthesis |