Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

Commit

Permalink
add dist
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Mar 15, 2023
1 parent bbbc263 commit bb1bf1a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build

on:
push:
branches:
- main

permissions: write-all

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: npm install
- run: npm run gulp
- name: push
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add dist
git commit -m "Deploy distribition files"
git push
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ __pycache__/
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
Expand Down
1 change: 1 addition & 0 deletions dist/javascript.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb1bf1a

Please sign in to comment.