Skip to content

Commit

Permalink
Upgrade filetools (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyje authored May 8, 2024
1 parent d172208 commit 526c7e5
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 48 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ jobs:
file: ./Dockerfile
tags: |
docker.io/${{ github.actor }}/filetool:canary
docker.io/${{ github.actor }}/filetool:0.3.0
docker.io/${{ github.actor }}/filetool:0.3.1
docker.io/${{ github.actor }}/filetool:${{ github.sha }}
docker.io/${{ github.actor }}/filetool:${{ github.run_id }}
docker.io/${{ github.actor }}/filetool:${{ steps.get_version.outputs.build_date }}
ghcr.io/${{ github.actor }}/filetool:canary
ghcr.io/${{ github.actor }}/filetool:0.3.0
ghcr.io/${{ github.actor }}/filetool:0.3.1
ghcr.io/${{ github.actor }}/filetool:${{ github.sha }}
ghcr.io/${{ github.actor }}/filetool:${{ github.run_id }}
ghcr.io/${{ github.actor }}/filetool:${{ steps.get_version.outputs.build_date }}
Expand All @@ -117,7 +117,7 @@ jobs:
org.opencontainers.image.description=A tool to manage and cleanup files on your hard drive.
org.opencontainers.image.vendor=${{ github.actor }}
org.opencontainers.image.authors=${{ github.actor }}
org.opencontainers.image.version=0.3.0
org.opencontainers.image.version=0.3.1
org.opencontainers.image.url=${{ github.event.repository.clone_url }}
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.created=${{ steps.get_version.outputs.build_timestamp }}
Expand Down
82 changes: 40 additions & 42 deletions 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
Expand Up @@ -14,7 +14,7 @@

[package]
name = "filetool"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
authors = ["Jeremy Edwards <[email protected]>"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Options:

Linux

`curl -o filetool -O -L https://github.com/jeremyje/filetools/releases/download/v0.3.0/filetool; chmod +x filetool`
`curl -o filetool -O -L https://github.com/jeremyje/filetools/releases/download/v0.3.1/filetool; chmod +x filetool`

Windows

`(New-Object System.Net.WebClient).DownloadFile("https://github.com/jeremyje/filetools/releases/download/v0.3.0/filetool.exe", "filetool.exe")`
`(New-Object System.Net.WebClient).DownloadFile("https://github.com/jeremyje/filetools/releases/download/v0.3.1/filetool.exe", "filetool.exe")`

0 comments on commit 526c7e5

Please sign in to comment.