Skip to content

fix(devcontainer): use correct build #34

fix(devcontainer): use correct build

fix(devcontainer): use correct build #34

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
docker-build-and-push:
name: Build and push
runs-on: ubuntu-latest
steps:
# Not needed since build-push-action will clone
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: open-turo/actions-release/semantic-release@v3
id: semantic-release
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
dry-run: true
- uses: docker/build-push-action@v5
with:
build-args: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
cache-from: type=gha
cache-to: type=gha,mode=max
context: .
platforms: linux/amd64
push: true
tags:
- ${{ github.repository }}:build-${{ github.run_id }}.${{ github.run_number }}.${{ github.run_attempt }}

Check failure on line 36 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 36, Col: 13): A sequence was not expected
- ${{ github.repository }}:${{ steps.semantic-release.outputs.new-release-version }}