Skip to content

Commit

Permalink
update license path
Browse files Browse the repository at this point in the history
  • Loading branch information
swang392 committed Jun 16, 2023
1 parent f363967 commit 3ccb103
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-ddev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- master
pull_request:
paths:
- ddev/**
branches:
- master

Expand Down Expand Up @@ -211,6 +213,8 @@ jobs:
if: >-
github.event_name == 'push'
&&
github.event.pull_request.head.repo.full_name == github.repository
&&
(github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
needs: binaries
runs-on: windows-2022
Expand Down Expand Up @@ -284,6 +288,8 @@ jobs:
if: >-
github.event_name == 'push'
&&
github.event.pull_request.head.repo.full_name == github.repository
&&
(github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
needs: binaries
runs-on: macos-12
Expand Down
4 changes: 2 additions & 2 deletions ddev/pyoxidizer.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def make_msi(target):
)
msi.msi_filename = DISPLAY_NAME + "-" + VERSION + "-" + arch + ".msi"
msi.help_url = "https://github.com/DataDog/integrations-core/tree/master/ddev"
msi.license_path = CWD + "/../LICENSE.txt"
msi.license_path = CWD + "/../LICENSE"

# https://gregoryszorc.com/docs/pyoxidizer/main/tugger_starlark_type_file_manifest.html
m = FileManifest()
Expand Down Expand Up @@ -94,4 +94,4 @@ def make_macos_app_bundle():
register_target("windows_installers", make_exe_installer, default=True)
register_target("macos_app_bundle", make_macos_app_bundle)

resolve_targets()
resolve_targets()

0 comments on commit 3ccb103

Please sign in to comment.