Skip to content
This repository has been archived by the owner on Jan 31, 2023. It is now read-only.

Commit

Permalink
Release 0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterdebie committed Aug 26, 2021
1 parent 6a45452 commit 98d35cd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,10 @@ jobs:
needs: [debbuild, raspbianbuild, win64binaries, amd64binaries]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v2
- run: mv amd64binaries/locast2tuner locast2tuner_${GITHUB_REF#refs/*/}_x86_64-unknown-linux-musl
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- name: Rename amd64 binary
run: mv amd64binaries/locast2tuner amd64binaries/locast2tuner_${GITHUB_REF#refs/*/}_x86_64-unknown-linux-musl
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -203,15 +204,15 @@ jobs:
amd64binaries/*
amd64deb/*.deb
armv7deb/*.deb
armv7deb/*.exe
win64binaries/*.exe
linuxamd64dockerbuild:
needs: [amd64binaries]
runs-on: ubuntu-latest
name: Build and publish linux-amd64 Docker image
name: Docker (amd64) + publish
steps:
- uses: actions/checkout@v2
- name: Docker meta tag
- name: Docker meta (tag)
if: startsWith(github.ref, 'refs/tags/')
id: meta_tag
uses: docker/metadata-action@v3
Expand All @@ -220,7 +221,7 @@ jobs:
tags: |
latest
type=semver,pattern={{version}}
- name: Docker meta branch
- name: Docker meta (branch)
if: startsWith(github.ref, 'refs/heads/')
id: meta_branch
uses: docker/metadata-action@v3
Expand Down
1 change: 1 addition & 0 deletions .latest_release.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upload binaries to github release
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "locast2tuner"
version = "0.3.7"
version = "0.3.8"
description = "Locast.org to Plex Media Server/Emby integration server"
authors = ["Wouter de Bie <wouter@evenflow.nl>"]
repository = "https://github.com/wouterdebie/locast2tuner"
Expand Down
1 change: 1 addition & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ impl Config {
conf.uuid = load_uuid(&cache_directory).unwrap();

conf.cache_directory = cache_directory;

Ok(conf)
}
}
Expand Down

0 comments on commit 98d35cd

Please sign in to comment.