mirror of
https://github.com/bitcookies/winrar-keygen.git
synced 2026-03-11 17:45:31 +00:00
27 lines
538 B
YAML
27 lines
538 B
YAML
name: WinRAR Keygen
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'keygen/*.json'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Generate key
|
|
shell: powershell
|
|
run: bin/x64-Release/winrar-keygen.exe "${{secrets.TEXT1}}" "${{secrets.TEXT2}}" | out-file -encoding ascii rarreg.key
|
|
|
|
- name: Upload key
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: rarreg_file
|
|
path: rarreg.key
|
|
retention-days: 90
|