Skip to content

Commit 7988aaf

Browse files
authored
Merge pull request #2711 from fetchai/develop
a new release into main
2 parents d3f177a + 116c24f commit 7988aaf

1,463 files changed

Lines changed: 19973 additions & 22521 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "fetch-docs-preview"
4+
}
5+
}

.github/pull_request_template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ _Put an `x` in the boxes that apply_
1919

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

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

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

50-
- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) doc
50+
- [ ] I have read the [CONTRIBUTING](https://github.com/fetchai/agents-aea/blob/master/CONTRIBUTING.md) doc
5151
- [ ] I am making a pull request against the `main` branch (left side), from `develop`
5252
- [ ] Lint and unit tests pass locally and in CI
5353
- [ ] I have checked the fingerprint hashes are correct by running (`scripts/generate_ipfs_hashes.py`)
@@ -56,8 +56,8 @@ _Put an `x` in the boxes that apply._
5656
- [ ] I have added an item in `HISTORY.md` for this release
5757
- [ ] I bumped the version number in the `aea/__version__.py` file.
5858
- [ ] I bumped the version number in every Docker image of the repo and published it. Also, I built and published them with tag `latest`
59-
(check the READMEs of [`aea-develop`](../develop-image/README.md#publish)
60-
and [`aea-user`](../user-image/README.md#publish))
59+
(check the READMEs of [`aea-develop`](https://github.com/fetchai/agents-aea/blob/master/develop-image/README.md#publish)
60+
and [`aea-user`](https://github.com/fetchai/agents-aea/blob/master/develop-image/user-image/README.md#publish))
6161
- [ ] I have pushed the latest packages to the registry.
6262
- [ ] I have uploaded the latest `aea` to PyPI.
6363
- [ ] I have uploaded the latest plugins to PyPI.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Documentation Preview
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- develop
8+
paths:
9+
- 'docs/**'
10+
11+
jobs:
12+
build:
13+
name: Docs Ephemerial Build
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Use python 3.7
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: '3.7'
24+
25+
- name: Install Dependencies
26+
run: cd docs && pip3 install pipenv && pipenv install -d --skip-lock --python python3
27+
28+
- name: Build
29+
run: cd docs && pipenv run mkdocs build -f ../mkdocs.yml
30+
31+
- name: Archive Production Artifact
32+
uses: actions/upload-artifact@master
33+
with:
34+
name: dist
35+
path: site
36+
37+
38+
deploy:
39+
name: Docs Ephemerial Deploy
40+
needs: build
41+
runs-on: ubuntu-latest
42+
steps:
43+
- uses: actions/checkout@v3
44+
45+
- name: Download Artifact
46+
uses: actions/download-artifact@master
47+
with:
48+
name: dist
49+
path: site
50+
51+
- uses: FirebaseExtended/action-hosting-deploy@v0
52+
with:
53+
repoToken: "${{ secrets.GITHUB_TOKEN }}"
54+
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}"
55+
expires: 2d
56+
projectId: fetch-docs-preview
57+
# entryPoint: docs/

0 commit comments

Comments
 (0)