Skip to content

Commit

Permalink
Resolve vulnerabilities in azul-pycharm image (DataBiosphere/azul-pri…
Browse files Browse the repository at this point in the history
  • Loading branch information
dsotirho-ucsc committed Sep 29, 2023
2 parents d7a2b85 + 9ae7854 commit 801fe60
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker
on: push

env:
azul_docker_pycharm_version: 2 # increment this to update the OS packages
azul_docker_pycharm_version: 3 # increment this to update the OS packages

jobs:
build:
Expand Down Expand Up @@ -40,5 +40,10 @@ jobs:
azul_docker_pycharm_version=${{ env.azul_docker_pycharm_version }}
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' && steps.vars.outputs.branch != 'master' }}
push: >
${{
github.event_name != 'pull_request'
&& steps.vars.outputs.branch != 'master'
&& !endsWith(steps.vars.outputs.branch, '-PR')
}}
tags: ${{ vars.DOCKERHUB_REPOSITORY }}:${{ steps.vars.outputs.branch }}-${{ env.azul_docker_pycharm_version }}

0 comments on commit 801fe60

Please sign in to comment.