Add REQUEST_TIME and REQUEST_TIME_FLOAT as allowed offsets
#17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - '**' | |
| jobs: | |
| build: | |
| name: Create a release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Create release | |
| uses: crazy-max/ghaction-github-release@v2 | |
| with: | |
| token: ${{ secrets.RELEASE_TOKEN }} | |
| draft: true | |
| prerelease: false |