Skip to content

Commit

Permalink
update: deployment workflow to run after push a new tag
Browse files Browse the repository at this point in the history
doc: added changelog.md
  • Loading branch information
sarahcssiqueira committed Jul 20, 2023
1 parent 58c522c commit 0bb6819
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Deploy Theme
name: Deploy

on:
push:
branches: [master]
tags:
- v*

env:
SSH_USER: ${{ secrets.SSH_USER }}
Expand All @@ -17,9 +18,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Install Composer dependencies
run: composer install

- name: Set SSH Connection
run: |
mkdir -p ~/.ssh/
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

#### 1.0.0

- Initial Release
14 changes: 8 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Base WP Theme

[![License: GPL v2](https://img.shields.io/badge/License-GPL_v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html)
[![PluginTerritory](https://img.shields.io/badge/Plugin%20Territory-Free-blue.svg?logo=wordpress&logoColor=FAFAFA)]()

Base WP Theme is a **skeleton** WordPress theme to use as a base to build WordPress themes from scratch.

Contains the configurations files for handling assets like Javascript files , CSS files, images and also handle WordPress Coding Standards and Autoload through composer.
Contains the configurations files for handling assets like Javascript files, CSS files, images and also handle WordPress Coding Standards and Autoload through composer.

- Webpack;
- Eslint;
Expand All @@ -18,10 +19,10 @@ Contains the configurations files for handling assets like Javascript files , CS
- [Introduction](#base-wp-theme)
- Requirements
- [Usage](#usage)
- Folders Structure
- WordPress Hierarchy
- Assets
- Build
- Folders Structure
- WordPress Hierarchy
- Assets
- Build
- [Contributing and Support](#contributing-and-support)

## Usage
Expand All @@ -36,7 +37,8 @@ run

### Reset the theme

Remove the front-page and create your own, you can use the front-page-sample.php
Remove the front-page.php and create your own, you can use the front-page-sample.php. Also remove the front-page.scss partial.
Remove the line /'.front-page of the

### 📁 Folders Structure

Expand Down

0 comments on commit 0bb6819

Please sign in to comment.