Skip to content

Commit

Permalink
Renamed env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
RanolP committed Dec 14, 2020
1 parent 577a738 commit d4f3aae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
working-directory: ./generator
run: npm run build:release
env:
ARTIFACT_DOWNLOAD_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}

- name: Create Artifacts
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion generator/src/vendors/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export async function getArtifacts(url: string): Promise<Artifact[]> {
}

export async function downloadArtifact(artifact: Artifact, target: PathLike): Promise<void> {
const response = await requestRaw(artifact.archiveDownloadUrl, process.env['ARTIFACT_DOWNLOAD_TOKEN']);
const response = await requestRaw(artifact.archiveDownloadUrl, process.env['REPO_ACCESS_TOKEN']);
const buffer = await response.buffer();
await mkdirs(dirname(target.toString()));

Expand Down

1 comment on commit d4f3aae

@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 359a610 (Version 0.100 beta_build1) and d4f3aae (Version 0.100 beta_build3).

Summary

  • Basic Latin: 95/128 (no changes)
  • Latin-1 Supplement: 30/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.