You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a developer I need a CD pipeline in GitHub Actions that builds the Otomee Interface and deploys it to an AWS S3 bucket and IPFS when changes are merged to the dev, release or master branch So that my application is automatically updated and distributed across both AWS and IPFS networks, ensuring high availability and decentralization
Details and Assumptions
The project is a React application hosted on GitHub.
The authentication with AWS is done using access keys.
AWS credentials are securely stored and accessible within the GitHub Actions environment.
The AWS S3 bucket is properly configured to serve the React application.
The workflow interacts with IPFS via an IPFS client inside the github runner. (ipns://docs.ipfs.tech/install/command-line/#install-official-binary-distributions) (ipns://docs.ipfs.tech/how-to/kubo-basic-cli/#add-files)
Acceptance Criteria
Given the Otomee interface repository and a configured CD pipeline
When changes are merged into the dev, release or master branch
Then the CD pipeline triggers automatically
Given the CD pipeline is triggered
When the pipeline executes
Then it builds the React project successfully
And when the React project is built
Then it uploads the build artifacts to the specified AWS S3 bucket
And after uploading to AWS S3
Then it uploads the build artifacts to IPFS
Given the deployment is successful
When I access the React application URL on AWS S3
Then I see the latest version of the application
And when I access the React application through an IPFS gateway
Then I see the latest version of the application
The text was updated successfully, but these errors were encountered:
As a developer
I need a CD pipeline in GitHub Actions that builds the Otomee Interface and deploys it to an AWS S3 bucket and IPFS when changes are merged to the dev, release or master branch
So that my application is automatically updated and distributed across both AWS and IPFS networks, ensuring high availability and decentralization
Details and Assumptions
Acceptance Criteria
The text was updated successfully, but these errors were encountered: