Skip to content

Commit

Permalink
fix: versions checkout and setup-node
Browse files Browse the repository at this point in the history
  • Loading branch information
oigabrielteodoro committed Nov 26, 2023
1 parent 05e38cf commit 9a9324c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
name: Create new version ${{ github.event.inputs.version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 18.x

Expand Down
11 changes: 0 additions & 11 deletions src/html/index.html

This file was deleted.

2 changes: 1 addition & 1 deletion src/html/powered-by.element.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PoweredBy extends HTMLElement {
connectedCallback() {
this.innerHTML = `
<a href="https://explow.studio" class="powered-by" target="_blank">
Powered by <img src="./assets/logo.svg" alt="Explow" />
Powered by <img src="../assets/logo.svg" alt="Explow" />
</a>
`;
}
Expand Down

0 comments on commit 9a9324c

Please sign in to comment.