Skip to content

Merge pull request #1838 from AdeelH/misc #177

Merge pull request #1838 from AdeelH/misc

Merge pull request #1838 from AdeelH/misc #177

Workflow file for this run

name: Release
on:
push:
branches:
- master
- "[0-9]+" # Major version only
- "[0-9]+.[0-9]+" # Major and minor version
- "[0-9]+.[0-9]+.[0-9]+" # Major, minor, and patch version
tags:
- "*"
jobs:
release:
name: release
runs-on: ubuntu-latest
strategy:
matrix:
image_type: [pytorch]
env:
DOCKER_BUILDKIT: 1
IMAGE_TYPE: ${{ matrix.image_type }}
steps:
- uses: actions/checkout@v2
- run: ./scripts/cibuild
- uses: codecov/codecov-action@v2
- run: ./scripts/cipublish
env:
QUAY_USER: ${{ secrets.QUAY_RASTERVISION_USER }}
QUAY_PASSWORD: ${{ secrets.QUAY_RASTERVISION_PASSWORD }}