Skip to content

Update dependencies #91

Update dependencies

Update dependencies #91

name: Build develop Docker image
on:
push:
branches:
- develop
paths-ignore:
- '.github/**'
- README.md
jobs:
variables-setup:
name: Setting variables for docker build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create variables
id: vars
run: |
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
outputs:
date: ${{ steps.vars.outputs.date }}
call-docker-build:
name: Call develop Docker build
needs: variables-setup
uses: reportportal/.github/.github/workflows/build-docker-image.yaml@main

Check failure on line 29 in .github/workflows/build-dev-image.yml

View workflow run for this annotation

GitHub Actions / Build develop Docker image

Invalid workflow file

The workflow is not valid. .github/workflows/build-dev-image.yml (Line: 29, Col: 11): Input runs-on is required, but not provided while calling.
with:
aws-region: ${{ vars.AWS_REGION }}
image-tag: 'develop-${{ github.run_number }}'
version: 'develop-${{ github.run_number }}'
date: ${{ needs.variables-setup.outputs.date }}
secrets: inherit