-
Notifications
You must be signed in to change notification settings - Fork 317
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 #2982 from aws-amplify/fileuploader/main
chore(file-uploader): Create new tagged release for testing
- Loading branch information
Showing
819 changed files
with
36,237 additions
and
10,822 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
'@aws-amplify/ui': patch | ||
'@aws-amplify/ui-react': patch | ||
'@aws-amplify/ui-react': minor | ||
'@aws-amplify/ui-react-core': patch | ||
'@aws-amplify/ui-react-native': major | ||
--- | ||
|
||
Version bump for ui, ui-react and ui-react-core packages | ||
Version bump for ui, ui-react, ui-react-native and ui-react-core packages |
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,81 @@ | ||
# Description: This workflow runs unit + e2e tests | ||
# | ||
# Triggered by: merge to `next-release/main` branch | ||
|
||
name: Publish / next-release | ||
|
||
on: | ||
push: | ||
branches: [next-release/main] | ||
|
||
jobs: | ||
test: | ||
uses: aws-amplify/amplify-ui/.github/workflows/reusable-e2e.yml@next-release/main | ||
with: | ||
commit: ${{ github.sha }} | ||
repository: ${{ github.repository }} | ||
secrets: | ||
# TODO: migrate away from this account once tfn is migrated | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
# TODO: migrate away from this account once tfn is migrated | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_ACCESS_KEY_ID_AUTH: ${{ secrets.AWS_ACCESS_KEY_ID_AUTH }} | ||
AWS_SECRET_ACCESS_KEY_AUTH: ${{ secrets.AWS_SECRET_ACCESS_KEY_AUTH }} | ||
AWS_ACCESS_KEY_ID_DATASTORE: ${{ secrets.AWS_ACCESS_KEY_ID_DATASTORE }} | ||
AWS_SECRET_ACCESS_KEY_DATASTORE: ${{ secrets.AWS_SECRET_ACCESS_KEY_DATASTORE }} | ||
AWS_ACCESS_KEY_ID_GEO: ${{ secrets.AWS_ACCESS_KEY_ID_GEO }} | ||
AWS_SECRET_ACCESS_KEY_GEO: ${{ secrets.AWS_SECRET_ACCESS_KEY_GEO }} | ||
DOMAIN: ${{ secrets.DOMAIN }} | ||
PHONE_NUMBER: ${{ secrets.PHONE_NUMBER }} | ||
USERNAME: ${{ secrets.USERNAME }} | ||
NEW_PASSWORD: ${{ secrets.NEW_PASSWORD }} | ||
VALID_PASSWORD: ${{ secrets.VALID_PASSWORD }} | ||
SITE_URL: ${{ secrets.SITE_URL }} | ||
DOCSEARCH_DOCS_APP_ID: ${{ secrets.DOCSEARCH_DOCS_APP_ID }} | ||
DOCSEARCH_DOCS_API_KEY: ${{ secrets.DOCSEARCH_DOCS_API_KEY }} | ||
DOCSEARCH_DOCS_INDEX_NAME: ${{ secrets.DOCSEARCH_DOCS_INDEX_NAME }} | ||
|
||
publish: | ||
needs: test | ||
uses: ./.github/workflows/reusable-tagged-publish.yml | ||
with: | ||
dist-tag: next-release | ||
secrets: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
build-test: | ||
runs-on: ubuntu-latest | ||
needs: publish | ||
environment: ci | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Add Amplify CLI | ||
run: yarn global add @aws-amplify/cli | ||
- name: Get CLI versions | ||
id: cli-version | ||
run: echo "::set-output name=version::$(amplify --version)" | ||
- name: Create or restore environments cache | ||
id: environments-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: canary/environments/**/aws-exports.js | ||
key: ${{ runner.os }}-canary-environments-${{ steps.cli-version.outputs.version }}-${{ hashFiles('canary/environments/**/amplify/**') }} | ||
env: | ||
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 1 | ||
- name: Pull down AWS environments | ||
if: steps.environments-cache.outputs.cache-hit != 'true' | ||
run: yarn pull | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_AUTH }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_AUTH }} | ||
working-directory: ./canary | ||
- name: Setup canary apps against @next-release | ||
run: yarn setup:next-release | ||
working-directory: ./canary | ||
- name: Run yarn install on each sample app | ||
run: yarn install | ||
working-directory: ./canary | ||
- name: Run yarn build on each sample app | ||
run: yarn build | ||
working-directory: ./canary |
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 was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.