Skip to content

Commit

Permalink
ci: add unex-check
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Oct 2, 2022
1 parent 11b2d35 commit f29eba1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/unex-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Check unex credentials"
on:
schedule:
- cron: '0 0 * * *'

jobs:
deploy:
if: github.repository == 'alandtse/vr_address_tools'
runs-on: ubuntu-latest

steps:
- name: Setup Dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.1.x'
include-prerelease: false
- name: Download NexusUploader
run: dotnet tool install -g NexusUploader
- name: Check UNEX
# https://github.com/agc93/nexus-uploader
env:
UNEX_COOKIES: ${{ secrets.UNEX_COOKIES }}
UNEX_APIKEY: ${{ secrets.UNEX_APIKEY }}
run: |
unex check --coookie
unex check --key

0 comments on commit f29eba1

Please sign in to comment.