Skip to content

Add token for GH CLI #10

Add token for GH CLI

Add token for GH CLI #10

name: automatic-release
on:
push:
branches: [main]
jobs:
build:
uses: ./.github/workflows/buildExecutable.yaml
Automatic-release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Download artifact
uses: actions/download-artifact@v8
- name: Release
run: |
gh release create v${{ github.run_number }} l10nUtil.exe
env:
GH_TOKEN: ${{ github.token }}