Skip to content

Commit

Permalink
Trying to fix the actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PouletteMC committed Jun 18, 2024
1 parent 5065c59 commit bec4935
Show file tree
Hide file tree
Showing 3 changed files with 10,191 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ on:

jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@main

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@main
with:
node-version: '18'

Expand All @@ -26,7 +26,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@main
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-website-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -37,7 +37,7 @@ jobs:
- run: yarn build

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@main
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions docs/networking/port-forwarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ As you can see it becomes a bit confusing, if you don't know how your network is

In any network you might find one of these devices:

| Device | Description |
|-------- |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Modem | This is usually provided by your internet service provider, ISP for short. Simply put: it provides a way to receive and send data needed for your telephone, TV and internet connection. |
| Router | A device that creates a network between the computers in your home by wire or wifi. Many internet provider install modems with an built-in router. (with or without wireless capabilities) |
| Switch | Looks the same as a router but it does less. You would use a switch to expand your network, *ex. 1 cable goes in, 3 cables go elsewhere.* |
| Device | Description |
|-------- |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Modem | This is usually provided by your internet service provider, ISP for short. Simply put: it provides a way to receive and send data needed for your telephone, TV and internet connection. |
| Router | A device that creates a network between the computers in your home by wire or wifi. Many internet provider install modems with an built-in router. (with or without wireless capabilities) |
| Switch | Looks the same as a router but it does less. You would use a switch to expand your network, *ex. 1 cable goes in, 3 cables go elsewhere.* |

So go ahead and look around to see how your network is setup.

Expand Down
Loading

0 comments on commit bec4935

Please sign in to comment.