-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into win-installer
- Loading branch information
Showing
38 changed files
with
283 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"app-builder-lib": minor | ||
--- | ||
|
||
feat: add support for AppArmor with template profile and configuration property |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
|
||
--- | ||
|
||
chore: minor semver update to node in docker images |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: 'Netlify Deploy - Release' | ||
|
||
on: | ||
release: | ||
types: ['published'] | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
statuses: write | ||
|
||
jobs: | ||
deploy: | ||
name: 'Deploy Release' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
|
||
- name: Install deps and audit | ||
uses: ./.github/actions/pnpm | ||
|
||
- name: Build typdoc site | ||
run: pnpm docs:all | ||
|
||
- uses: jsmrcaga/[email protected] | ||
with: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
NETLIFY_DEPLOY_MESSAGE: "Prod deploy v${{ github.ref }}" | ||
NETLIFY_DEPLOY_TO_PROD: true | ||
install_command: "echo Skipping installing the dependencies" | ||
build_command: "echo Skipping building the web files" | ||
debug: true | ||
build_directory: "site" | ||
monorepo_package: "electron-builder" | ||
|
||
# Creates a status check with link to preview | ||
- name: Set Status check on commit | ||
uses: guibranco/[email protected] | ||
with: | ||
authToken: ${{ secrets.GITHUB_TOKEN }} | ||
state: success | ||
context: Netlify Documentation Site preview | ||
description: Production - Click "details" | ||
target_url: ${{ env.NETLIFY_PREVIEW_URL }} | ||
sha: ${{github.event.pull_request.head.sha || github.sha}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: 'Netlify Deploy - PR' | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'edited', 'synchronize'] | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
statuses: write | ||
|
||
jobs: | ||
deploy: | ||
name: 'Deploy PR' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code repository | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
|
||
- name: Install deps and audit | ||
uses: ./.github/actions/pnpm | ||
|
||
- name: Build typdoc site | ||
run: pnpm docs:all | ||
|
||
# Sets the branch name as environment variable | ||
- uses: nelonoel/[email protected] | ||
- uses: jsmrcaga/[email protected] | ||
with: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
deploy_alias: ${{ env.BRANCH_NAME }} | ||
install_command: "echo Skipping installing the dependencies" | ||
build_command: "echo Skipping building the web files" | ||
debug: true | ||
build_directory: "site" | ||
monorepo_package: "electron-builder" | ||
|
||
# Creates a status check with link to preview | ||
- name: Set Status check on commit | ||
uses: guibranco/[email protected] | ||
with: | ||
authToken: ${{ secrets.GITHUB_TOKEN }} | ||
state: success | ||
context: Netlify Documentation Site preview | ||
description: Development - Click "details" | ||
target_url: ${{ env.NETLIFY_PREVIEW_URL }} | ||
sha: ${{github.event.pull_request.head.sha || github.sha}} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
FROM squidfunk/mkdocs-material | ||
RUN pip install mkdocs-include-markdown-plugin | ||
RUN pip install pymdown-extensions | ||
RUN pip install pygments | ||
RUN pip install markdown-include | ||
FROM squidfunk/mkdocs-material:9.5 | ||
RUN pip install mkdocs-include-markdown-plugin pymdown-extensions pygments markdown-include |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
packages/app-builder-lib/templates/linux/apparmor-profile.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
abi <abi/4.0>, | ||
include <tunables/global> | ||
|
||
profile ${executable} "/opt/${sanitizedProductName}/${executable}" flags=(unconfined) { | ||
userns, | ||
# Site-specific additions and overrides. See local/README for details. | ||
include if exists <local/${executable}> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.