shalvah 3 роки тому
батько
коміт
518be53254
4 змінених файлів з 14 додано та 12 видалено
  1. 3 6
      .github/workflows/lint.yml
  2. 6 5
      .github/workflows/run-tests.yml
  3. 4 0
      CHANGELOG.md
  4. 1 1
      src/Tools/Globals.php

+ 3 - 6
.github/workflows/lint.yml

@@ -2,8 +2,7 @@ name: Lint
 
 on:
   push:
-    branches:
-      - master
+    branches: [master]
   pull_request:
 
 jobs:
@@ -17,10 +16,8 @@ jobs:
     name: Lint code (PHP ${{ matrix.php }})
 
     steps:
-      - name: Checkout code
-        uses: actions/checkout@v2
-
-      - name: Setup PHP
+      - uses: actions/checkout@v2
+      - name: Setup PHP ${{ matrix.php }}
         uses: shivammathur/setup-php@v2
         with:
           php-version: ${{ matrix.php }}

+ 6 - 5
.github/workflows/run-tests.yml

@@ -1,6 +1,9 @@
 name: Tests
 
-on: [push, pull_request]
+on:
+  push:
+    branches: [master]
+  pull_request:
 
 jobs:
   test:
@@ -23,10 +26,8 @@ jobs:
     name: Tests (PHP ${{ matrix.php }} - ${{ matrix.deps }})
 
     steps:
-      - name: Checkout code
-        uses: actions/checkout@v2
-
-      - name: Setup PHP
+      - uses: actions/checkout@v2
+      - name: Setup PHP ${{ matrix.php }}
         uses: shivammathur/setup-php@v2
         with:
           php-version: ${{ matrix.php }}

+ 4 - 0
CHANGELOG.md

@@ -12,6 +12,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removals
 
+## 3.6.1 (Friday, 16 July 2021)
+### Fixed
+- Use correct asset path (fixes #274)([00b77e4b144e13b579e5ad820ab79a1b42eac756](https://github.com/knuckleswtf/scribe/commit/00b77e4b144e13b579e5ad820ab79a1b42eac756),
+
 ## 3.6.0 (Tuesday, 13 July 2021)
 ### Fixed
 - Sort group filenames numerically (fixes #273)([c77fed23f04ab1f13bb06bf5b099227ced46dbdc](https://github.com/knuckleswtf/scribe/commit/c77fed23f04ab1f13bb06bf5b099227ced46dbdc),

+ 1 - 1
src/Tools/Globals.php

@@ -4,7 +4,7 @@ namespace Knuckles\Scribe\Tools;
 
 class Globals
 {
-    public const SCRIBE_VERSION = '3.6.0';
+    public const SCRIBE_VERSION = '3.6.1';
 
     public static bool $shouldBeVerbose = false;
 }