Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
alinasytnik committed Aug 31, 2023
1 parent fa32b2e commit fdd70a0
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 33 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/fleek-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Deploy site via Fleek
on: push
jobs:
deploy-to-fleek:
runs-on: ubuntu-latest
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: ${{ secrets.FLEEK_PROJECT_ID }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Fleek CLI
run: npm i -g @fleekxyz/cli
- name: Install Packages
run: npm install
- name: Build & deploy sites
run: fleek sites deploy
29 changes: 0 additions & 29 deletions .github/workflows/fleek-deploy.yml

This file was deleted.

4 changes: 2 additions & 2 deletions fleek.config.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sites": [
{
"slug": "large-unimportant-balloon",
"slug": "rapping-brash-businessperson",
"distDir": "public",
"buildCommand": "yarn && yarn build"
"buildCommand": "npm run build"
}
]
}
4 changes: 2 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const badgeStyle = {

const links = [
{
text: 'Tutorial',
text: 'Tutorial!!!!!!',
url: 'https://www.gatsbyjs.com/docs/tutorial/',
description:
"A great place to get started if you're new to web development. Designed to guide you through setting up your first Gatsby site.",
Expand Down Expand Up @@ -124,7 +124,7 @@ const IndexPage = () => {
GTM {process.env.GA_ID}
<br />
<span style={headingAccentStyles}>
LLLOOOL
Test CI 2
</span>
</h1>
<p style={paragraphStyles}>
Expand Down

0 comments on commit fdd70a0

Please sign in to comment.