Skip to content

Commit

Permalink
start ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
mhpob committed Feb 21, 2024
1 parent f24b192 commit c65377e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dl_ubuntu.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on:
push:
branches: ci-windows
workflow_dispatch:

jobs:
rvdat-dl:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
GITLAB_PAT: ${{ secrets.GITLAB_TOKEN }}

steps:
- uses: actions/checkout@v4

- name: VDAT location on Linux
if: runner.os == 'Linux'
run: |
echo "VDAT_EXE=/home/runner/work/rvdat/rvdat/vdat.exe" >> $GITHUB_ENV
- name: Pull vdat
run: |
curl -o vdat --request GET --header $GITLAB_PAT "https://gitlab.oceantrack.org/api/v4/projects/otndc%2Fvdat-working-group/repository/files/releases%2Fvdat-7.0.0-20231107%2FLinux-x86_64%2Fvdat/raw?ref=master"
- name: Test vdat
run: |
vdat --help

0 comments on commit c65377e

Please sign in to comment.