Skip to content

Sync Portuguese translation of the Channels section of the basic training #431

Sync Portuguese translation of the Channels section of the basic training

Sync Portuguese translation of the Channels section of the basic training #431

Workflow file for this run

# Build and push the Docker image for GitPod
# - Only pushes if push or release
# - Builds without push for PRs to check the Dockerfile
name: Build Docker image
on:
pull_request:
push:
branches: [master]
release:
types: [published]
jobs:
push_to_registry:
if: github.repository == 'nextflow-io/training'
name: Build + Push Docker image
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build / push latest image
uses: docker/build-push-action@v3
if: github.event_name != 'release'
with:
file: .github/gitpod.Dockerfile
push: ${{ github.event_name == 'push' }}
tags: ghcr.io/nextflow-io/training:latest
- name: Push release image
uses: docker/build-push-action@v3
if: github.event_name == 'release'
with:
file: .github/gitpod.Dockerfile
push: true
tags: ghcr.io/nextflow-io/training:${{ github.event.release.tag_name }}