Skip to content

Fix wasp start db to use Postgres 18 explicitly (#3323) #120

Fix wasp start db to use Postgres 18 explicitly (#3323)

Fix wasp start db to use Postgres 18 explicitly (#3323) #120

Workflow file for this run

name: Build and upload Wasp CLI binaries to release
on:
push:
tags:
- v*
jobs:
ci:
uses: ./.github/workflows/waspc-ci.yaml
build:
uses: ./.github/workflows/waspc-build.yaml
examples-e2e-tests:
uses: ./.github/workflows/examples-e2e-tests.yaml
starters-e2e-tests:
uses: ./.github/workflows/starters-e2e-tests.yaml
wasp-config-tests:
uses: ./.github/workflows/wasp-config-tests.yaml
create-release:
needs:
- ci
- build
- examples-e2e-tests
- starters-e2e-tests
- wasp-config-tests
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
pattern: wasp-cli-*
# `download-artifact` will download each artifact into its own separate
# directory. We need to account for this in the glob pattern for the
# release artifacts. The glob should only include the files inside the
# folders, not the folders themselves.
- name: Create Github release
uses: ncipollo/release-action@v1
with:
draft: true
allowUpdates: true
artifacts: "./wasp-cli-*/*"
artifactErrorsFailBuild: true
replacesArtifacts: true