-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from Workiva/dont_publish_internally
FEA-2972: Dont publish internally
- Loading branch information
Showing
3 changed files
with
8 additions
and
22 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
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,10 +1,4 @@ | ||
FROM drydock-prod.workiva.net/workiva/dart2_base_image:2 | ||
WORKDIR /build/ | ||
ADD . /build/ | ||
|
||
ADD pubspec.yaml pubspec.yaml | ||
RUN dart pub get | ||
|
||
RUN tar -cvzf /build/assets.tar.gz -C lib sockjs.js sockjs.js.map sockjs_prod.js sockjs_prod.js.map | ||
ARG BUILD_ARTIFACTS_CDN=/build/assets.tar.gz | ||
|
||
FROM scratch |
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,19 +1,12 @@ | ||
name: verify-github-actions | ||
description: Verify that the github actions run passed, this is needed to make pipelines pass without manual intervention | ||
contact: 'Frontend Frameworks Architecture / #support-frontend-architecture' | ||
image: drydock.workiva.net/workiva/skynet-images:3728345 # Uses the image from this branch: https://github.com/Workiva/skynet-images/pull/127 | ||
description: no-op | ||
image: drydock.workiva.net/workiva/skynet-images:bash_curl_alpinelatest-latest | ||
|
||
size: small | ||
timeout: 600 | ||
timeout: short | ||
|
||
run: | ||
on-tag: true | ||
on-pull-request: true | ||
on-promotion: true | ||
when-modified-file-name-is: | ||
- skynet.yaml | ||
|
||
env: | ||
# encrypted github token used for requests to api.github.com | ||
- secure: dnIrN6NR/QVFWqgHu98at/vrwT07wNoneulr+5rY4jdWVKmToyB5HYQplmxJC3M6Ju9fao4ZnnuXMRWHU4bBtR8Lkm0= | ||
|
||
scripts: | ||
- python3 /actions/verify_github_actions.py | ||
- echo "See .github/workflows/dart_ci.yaml for tests" |