Skip to content

Commit

Permalink
CI: fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
junghans committed Sep 26, 2024
1 parent bf06c7c commit d35a849
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ jobs:
- name: Generate platforms
id: platforms
run: |
if [ "${{ matrix.config.dockerfile }}::${{ matrix.config.tag }}" = "fedora:latest" ]; then
echo "linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
if [ "${{ matrix.config.dockerfile }}:${{ matrix.config.tag }}" = "fedora:latest" ]; then
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
else
echo "linux/amd64" >> $GITHUB_OUTPUT
echo "platforms=linux/amd64" >> $GITHUB_OUTPUT
fi
- name: Build and Push Docker images for all Container Registries
uses: docker/build-push-action@v3
Expand All @@ -80,3 +80,4 @@ jobs:
build-args: ${{ steps.build_args.outputs.args }}
pull: true
push: ${{ github.repository_owner == 'votca' && ( github.event_name == 'push' || github.event_name == 'schedule' ) }}
platforms: ${{ steps.platforms.outputs.platforms }}

0 comments on commit d35a849

Please sign in to comment.