Try tag filtering again
CI release / stable / cross-${{ matrix.target }} (x86_64-unknown-linux-gnu) (push) Successful in 4m52s Details
CI release / stable / cross-${{ matrix.target }} (aarch64-unknown-linux-gnu) (push) Successful in 6m7s Details
CI release / stable / cross-${{ matrix.target }} (armv7-unknown-linux-gnueabihf) (push) Successful in 7m5s Details

This commit is contained in:
chmanie 2023-06-13 10:00:16 +02:00
parent 2f89886e5d
commit a7c2fe391b
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ run-name: CI release
on: on:
push: push:
tags: tags:
- '*' - 'v*'
jobs: jobs:
release: release:

View File

@ -222,6 +222,7 @@ impl PlayerEngine {
SEEK_TO.store(time.as_secs(), Ordering::SeqCst); SEEK_TO.store(time.as_secs(), Ordering::SeqCst);
// FIXME: ideally we would like to return once the seeking is successful // FIXME: ideally we would like to return once the seeking is successful
// then return the current elapsed time // then return the current elapsed time
// Cond-var might be needed to sleep this (seeking takes time)
Ok(time) Ok(time)
} }