Skip to content

Adding to the README file #40

Adding to the README file

Adding to the README file #40

Workflow file for this run

name: Gitpod
on:
push:
branches: [main, dev]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_protected == 'true' && github.sha || github.ref }}
cancel-in-progress: true
jobs:
complete:
if: always()
needs: [build-image]
runs-on: ubuntu-latest
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build -f .gitpod.Dockerfile .