forked from prisma/prisma-engines
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docker): switch restart to unless-stopped + auto-formatting (pr…
- Loading branch information
Showing
3 changed files
with
127 additions
and
123 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ on: | |
required: true | ||
npmDistTag: | ||
required: true | ||
default: "latest" | ||
default: 'latest' | ||
|
||
jobs: | ||
build: | ||
|
@@ -21,7 +21,7 @@ jobs: | |
steps: | ||
- name: Print input | ||
env: | ||
THE_INPUT: "${{ toJson(github.event.inputs) }}" | ||
THE_INPUT: '${{ toJson(github.event.inputs) }}' | ||
run: | | ||
echo $THE_INPUT | ||
|
@@ -42,7 +42,7 @@ jobs: | |
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "14.x" | ||
node-version: '14.x' | ||
|
||
- name: Set up NPM token | ||
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | ||
|
@@ -65,6 +65,6 @@ jobs: | |
if: ${{ failure() }} | ||
uses: rtCamp/[email protected] | ||
env: | ||
SLACK_TITLE: "prisma-schema-wasm publishing failed :x:" | ||
SLACK_COLOR: "#FF0000" | ||
SLACK_TITLE: 'prisma-schema-wasm publishing failed :x:' | ||
SLACK_COLOR: '#FF0000' | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_WASM_FAILING }} |
Oops, something went wrong.