Skip to content

Commit

Permalink
Merge pull request #2711 from fetchai/develop
Browse files Browse the repository at this point in the history
a new release into main
  • Loading branch information
solarw authored May 6, 2022
2 parents d3f177a + 116c24f commit 7988aaf
Show file tree
Hide file tree
Showing 1,463 changed files with 19,973 additions and 22,521 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "fetch-docs-preview"
}
}
8 changes: 4 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ _Put an `x` in the boxes that apply_

_Put an `x` in the boxes that apply._

- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) doc
- [ ] I have read the [CONTRIBUTING](https://github.com/fetchai/agents-aea/blob/main/CONTRIBUTING.md) doc
- [ ] I am making a pull request against the `develop` branch (left side). Also you should start your branch off our `develop`.
- [ ] Lint and unit tests pass locally with my changes and CI passes too
- [ ] I have added tests that prove my fix is effective or that my feature works
Expand Down Expand Up @@ -47,7 +47,7 @@ Describe in short the main changes with the new release.

_Put an `x` in the boxes that apply._

- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) doc
- [ ] I have read the [CONTRIBUTING](https://github.com/fetchai/agents-aea/blob/master/CONTRIBUTING.md) doc
- [ ] I am making a pull request against the `main` branch (left side), from `develop`
- [ ] Lint and unit tests pass locally and in CI
- [ ] I have checked the fingerprint hashes are correct by running (`scripts/generate_ipfs_hashes.py`)
Expand All @@ -56,8 +56,8 @@ _Put an `x` in the boxes that apply._
- [ ] I have added an item in `HISTORY.md` for this release
- [ ] I bumped the version number in the `aea/__version__.py` file.
- [ ] I bumped the version number in every Docker image of the repo and published it. Also, I built and published them with tag `latest`
(check the READMEs of [`aea-develop`](../develop-image/README.md#publish)
and [`aea-user`](../user-image/README.md#publish))
(check the READMEs of [`aea-develop`](https://github.com/fetchai/agents-aea/blob/master/develop-image/README.md#publish)
and [`aea-user`](https://github.com/fetchai/agents-aea/blob/master/develop-image/user-image/README.md#publish))
- [ ] I have pushed the latest packages to the registry.
- [ ] I have uploaded the latest `aea` to PyPI.
- [ ] I have uploaded the latest plugins to PyPI.
Expand Down
57 changes: 57 additions & 0 deletions .github/workflows/docs_pr_preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Documentation Preview

on:
pull_request:
branches:
- master
- develop
paths:
- 'docs/**'

jobs:
build:
name: Docs Ephemerial Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Use python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Install Dependencies
run: cd docs && pip3 install pipenv && pipenv install -d --skip-lock --python python3

- name: Build
run: cd docs && pipenv run mkdocs build -f ../mkdocs.yml

- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: dist
path: site


deploy:
name: Docs Ephemerial Deploy
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Download Artifact
uses: actions/download-artifact@master
with:
name: dist
path: site

- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}"
expires: 2d
projectId: fetch-docs-preview
# entryPoint: docs/
Loading

0 comments on commit 7988aaf

Please sign in to comment.