add planet_n_spider pyCharm runConfiguration #897
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: publish | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
- '**' | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: azure/docker-login@v1 | |
with: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- uses: rlespinasse/[email protected] | |
- name: Build Docker image | |
run: docker build --tag ${{ github.repository }}:${{ env.GITHUB_REF_SLUG }} . | |
- name: Publish to DockerHub | |
run: docker push ${{ github.repository }}:${{ env.GITHUB_REF_SLUG }} |