@zipify/wysiwyg 2.1.0 → 2.2.0-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -90,31 +90,3 @@ jobs:
90
90
  uses: ./.github/actions/unit-tests
91
91
  with:
92
92
  github-token: ${{ secrets.GITHUB_TOKEN }}
93
-
94
- deploy_example:
95
- name: Deploy Example
96
- if: github.event.pull_request.draft == false
97
- runs-on: ubuntu-latest
98
- needs:
99
- - lint_js
100
- - lint_css
101
- - unit_tests
102
- steps:
103
- - uses: actions/checkout@v3
104
- - uses: ./.github/actions/setup
105
-
106
- - id: deploy
107
- uses: ./.github/actions/deploy-example
108
- with:
109
- folder: ${{ github.head_ref }}
110
- cache-control: max-age=0,no-cache,no-store,must-revalidate
111
- aws-region: eu-central-1
112
- aws-bucket: zipify-wysiwyg
113
- aws-access-key: ${{ secrets.AWS_EXAMPLE_ACCESS_KEY_ID }}
114
- aws-secret-key: ${{ secrets.AWS_EXAMPLE_SECRET_ACCESS_KEY }}
115
-
116
- - uses: thollander/actions-comment-pull-request@v1
117
- with:
118
- message: "**:rocket: ExampleApp:** Line on [${{ github.head_ref }}](${{ steps.deploy.outputs.public-url }})"
119
- comment_includes: "ExampleApp"
120
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}