Skip to content

Commit 7a06b3c

Browse files
committed
Update contact and domain information
- Update the landing page and generated links to use the new atomvm.org domain name. - Update the contact information by removing email link to [email protected] and stop advertising the discord server that we no longer have administrative control over. - Add news post announcing the domain name change. - Updates publish workflow to publish content to atomvm/atomvm.org repo for production. Signed-off-by: Winford <[email protected]>
1 parent dcbbdf5 commit 7a06b3c

File tree

5 files changed

+34
-20
lines changed

5 files changed

+34
-20
lines changed

.github/workflows/publish.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ jobs:
5454
- uses: actions/checkout@v3
5555
id: checkout-production
5656
with:
57-
repository: atomvm/atomvm_www
58-
ref: Production
57+
repository: atomvm/atomvm.org
58+
ref: main
5959
path: ./www
6060

6161
- name: Build Site
@@ -66,23 +66,26 @@ jobs:
6666
- name: Commit files
6767
working-directory: ./www
6868
run: |
69-
git checkout Production
69+
git checkout main
7070
git branch --show-current
71-
git config --local user.email "atomvm-doc-bot@object.stream"
71+
git config --local user.email "atomvm-doc-bot@users.noreply.github.com"
7272
git config --local user.name "AtomVM Doc Bot"
7373
git add .
74-
git commit -m "Update Website Frontend\n${{ github.event.workflow_run.head_commit.message }}"
74+
git commit -m "Update Website\n${{ github.event.workflow_run.head_commit.message }}"
7575
git log -1
7676
7777
- name: Push changes
7878
if: github.repository == 'atomvm/atomvm_www'
7979
working-directory: ./www
8080
run: |
81+
export GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no"
8182
eval `ssh-agent -t 60 -s`
82-
echo "${{ secrets.PUBLISH_KEY }}" | ssh-add -
83+
echo "${{ secrets.PUBLISH_ACTION_KEY }}" | ssh-add -
8384
mkdir -p ~/.ssh/
84-
ssh-keyscan github.com >> ~/.ssh/known_hosts
85-
git remote add topush "[email protected]:atomvm/atomvm_www.git"
86-
git fetch topush
87-
git push --set-upstream topush Production
88-
85+
echo "github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl" > ~/.ssh/known_hosts
86+
echo "github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=" >> ~/.ssh/known_hosts
87+
echo "github.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk=" >> ~/.ssh/known_hosts
88+
git remote add push_dest "[email protected]:atomvm/atomvm.org.git"
89+
git fetch push_dest
90+
git diff --exit-code push_dest/main || echo "Going to push"
91+
git diff --exit-code push_dest/main || git push --set-upstream push_dest main

_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020

2121
title: AtomVM
2222
23-
author: atomvm.net
23+
author: atomvm.org
2424
description: >- # this means to ignore newlines until "baseurl:"
2525
Welcome to AtomVM, the Erlang virtual machine for IoT devices!
2626
# Write an awesome description for your new site here. You can edit this
2727
# line in _config.yml. It will appear in your document head meta (for
2828
# Google search results) and in your feed.xml site description.
2929
#baseurl: "/" # the subpath of your site, e.g. /blog
30-
url: "https://www.atomvm.net" # the base hostname & protocol for your site, e.g. http://example.com
30+
url: "https://atomvm.org" # the base hostname & protocol for your site, e.g. http://example.com
3131
github_username: atomvm
3232

33-
host: "www.atomvm.net"
33+
host: "atomvm.org"
3434

3535
# collections:
3636
# portfolio:

_data/home.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ navbar_entries:
66
url: news
77

88
- title: doc
9-
url: doc/main
9+
url: https://doc.atomvm.org/latest
1010

1111
- title: github
1212
url: https://github.com/atomvm
@@ -22,7 +22,7 @@ navbar_entries:
2222

2323
project_entries:
2424
- title: Documentation
25-
url: doc/master
25+
url: doc/main
2626
desc: AtomVM documentation, from soup to nuts. Everything you want to know about AtomVM!
2727

2828
- title: Sample Code
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: post
3+
title: atomvm.net is now atomvm.org
4+
author: The AtomVM team
5+
excerpt_separator: <!--more-->
6+
---
7+
8+
## AtomVM has a new domain name.
9+
10+
Just a short public service announcement:
11+
12+
AtomVM has moved from www.atomvm.net to atomvm.org. Please update your bookmarks and rss subscriptions. We appreciate any help spreading the word to your friends and colleagues, and on social media.
13+
14+
_The AtomVM team_

contact.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ permalink: /contact/
66

77
AtomVM users and developers can be found on the [AtomVM Forum](https://erlangforums.com/c/erlang-platforms/atomvm-forum/76).
88

9-
We have an active Telegram community dicussing [AtomVM - Erlang and Elixir on Microcontrollers 🏝](https://t.me/atomvm).
10-
We also hang out on the [AtomVM Discord](https://discord.gg/QA7fNjm9Nw) channel.
9+
We have an active Telegram community discussing [AtomVM - Erlang and Elixir on Microcontrollers 🏝](https://t.me/atomvm).
1110

1211
Drop in and say hello!
13-
14-
For direct inquiries, please write to us at `help` -at- `atomvm.net`.

0 commit comments

Comments
 (0)