Skip to content

Commit

Permalink
fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
hatappo committed Nov 18, 2021
1 parent 7307501 commit 4f09f6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/marge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: merge
- name: Merge by themes
run: |
mkdir -p dist
for theme in `ls -d src/* | sed 's/src\///'` ;do
Expand All @@ -26,7 +26,7 @@ jobs:
cat work/$theme/*.js > dist/zola-shortcodes-netlify-cms.$theme.js
done
rm -rf work
- name: merge
- name: Commit the merged ones
run: |
git config --local user.email "[email protected]"
git config --local user.name "Fumihiko Hata"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: checkout
- name: Checkout
uses: actions/checkout@v2
- name: set version
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
- name: make tarball
- name: Make tarball
run: |
cd dist
tar -zcvf zola-shortcodes-netlify-cms.tar.gz *.js
- name: release
- name: Release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 4f09f6f

Please sign in to comment.