Skip to content

Commit

Permalink
Release v0.100
Browse files Browse the repository at this point in the history
  • Loading branch information
RanolP committed Dec 13, 2020
1 parent fdbfb5b commit d062e36
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,41 +60,41 @@ jobs:
with:
fetch-depth: 0
- name: Evaluate tag status
id: tag-status
id: tag_status
run: |
latestTag=$(git rev-list --tags --max-count=1);
latestCommit=$(git show -s --format=%H);
echo ::set-output name=tagged::$([ "$latestTag" = "$latestCommit" ] && echo true || echo false)
echo ::set-output name=name::$(git describe --tags)
echo ::set-output name=tagged::$([ "$latestTag" = "$latestCommit" ] && echo true || echo false);
echo ::set-output name=name::$(git describe --tags);
- name: Download artifact
if: ${{ steps.tag-status.outputs.tagged == 'true' }}
if: ${{ steps.tag_status.outputs.tagged == 'true' }}
uses: actions/download-artifact@v2
with:
name: dalmoori-font
path: ./dalmoori-font
- name: Zipping Files
if: ${{ steps.tag-status.outputs.tagged == 'true' }}
if: ${{ steps.tag_status.outputs.tagged == 'true' }}
run: zip -r -j dalmoori.zip dalmoori-font
- name: Generate Changelog
if: ${{ steps.tag-status.outputs.tagged == 'true' }}
if: ${{ steps.tag_status.outputs.tagged == 'true' }}
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
if: ${{ steps.tag-status.outputs.tagged == 'true' }}
if: ${{ steps.tag_status.outputs.tagged == 'true' }}
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.create_release.outputs.name }}
release_name: Release ${{ steps.create_release.outputs.name }}
tag_name: ${{ steps.tag_status.outputs.name }}
release_name: Release ${{ steps.tag_status.outputs.name }}
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false
- name: Upload Release Asset
if: ${{ steps.tag-status.outputs.tagged == 'true' }}
if: ${{ steps.tag_status.outputs.tagged == 'true' }}
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
Expand Down

1 comment on commit d062e36

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Advancement Report

Comparison between 328b0b5 (Version 0.100) and d062e36 (Version 0.100).

Summary

  • Basic Latin: 95/128 (no changes)
  • Hangul Compatibility Jamo: 51/96 (no changes)
  • Hangul Syllables: 11172/11184 (no changes)

Details

Hangul Syllables

Changed: 력 (U+B825), 렦 (U+B826), 렧 (U+B827), 련 (U+B828), 렩 (U+B829), 렫 (U+B82B), 렴 (U+B834), 렷 (U+B837), 렸 (U+B838), 령 (U+B839), 렺 (U+B83A), 렻 (U+B83B), 렾 (U+B83E), 렿 (U+B83F), 롁 (U+B841), 롂 (U+B842), 롃 (U+B843), 롄 (U+B844), 롅 (U+B845), 롆 (U+B846), 롇 (U+B847), 롐 (U+B850), 롓 (U+B853), 롔 (U+B854), 롕 (U+B855), 롖 (U+B856), 롚 (U+B85A)

Please sign in to comment.