Skip to content

Commit

Permalink
turn off workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
DanElliottPalmer committed Feb 10, 2024
1 parent b988bdd commit f2474eb
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
# version: 2
# updates:
# - package-ecosystem: "npm"
# directory: "/" # Location of package manifests
# schedule:
# interval: "weekly"
60 changes: 30 additions & 30 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: Build it up!
on:
# schedule:
# - cron: '0 0 * * *'
push:
branches:
- main
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
# name: Build it up!
# on:
# # schedule:
# # - cron: '0 0 * * *'
# push:
# branches:
# - main
# jobs:
# build-and-deploy:
# concurrency: ci-${{ github.ref }}
# runs-on: ubuntu-latest
# steps:
# - name: Checkout 🛎️
# uses: actions/checkout@v3

- name: Setup Git
run: |
git config user.name "danelliottpalmer"
git config user.email "danelliottpalmer@gmail.com"
# - name: Setup Git
# run: |
# git config user.name "danelliottpalmer"
# git config user.email "danelliottpalmer@gmail.com"

- name: Install and Build
run: |
npm ci
npm run build
# - name: Install and Build
# run: |
# npm ci
# npm run build

- name: Create Index.html
run: |
node lib/index.js
# - name: Create Index.html
# run: |
# node lib/index.js

- name: Commit Files
run: |
git add index.html games.ics
git commit -m "feat(files): update static index and games calendar"
git push origin main
# - name: Commit Files
# run: |
# git add index.html games.ics
# git commit -m "feat(files): update static index and games calendar"
# git push origin main

0 comments on commit f2474eb

Please sign in to comment.