mirror of
https://github.com/metabarcoding/obitools4.git
synced 2026-03-25 21:40:52 +00:00
Compare commits
6 Commits
Release_4.
...
Release_4.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
da195ac5cb | ||
|
|
20a0a09f5f | ||
|
|
7d8c578c57 | ||
|
|
d7f615108f | ||
|
|
c98501a898 | ||
|
|
23f145a4c2 |
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
@@ -52,7 +52,7 @@ jobs:
|
|||||||
|
|
||||||
# Build for Linux AMD64
|
# Build for Linux AMD64
|
||||||
echo "Building for Linux AMD64..."
|
echo "Building for Linux AMD64..."
|
||||||
GOOS=linux GOARCH=amd64 make
|
GOOS=linux GOARCH=amd64 make obitools
|
||||||
cd build
|
cd build
|
||||||
for binary in *; do
|
for binary in *; do
|
||||||
tar -czf ../release/${binary}_${VERSION}_linux_amd64.tar.gz ${binary}
|
tar -czf ../release/${binary}_${VERSION}_linux_amd64.tar.gz ${binary}
|
||||||
@@ -63,7 +63,7 @@ jobs:
|
|||||||
|
|
||||||
# Build for Linux ARM64
|
# Build for Linux ARM64
|
||||||
echo "Building for Linux ARM64..."
|
echo "Building for Linux ARM64..."
|
||||||
GOOS=linux GOARCH=arm64 make
|
GOOS=linux GOARCH=arm64 make obitools
|
||||||
cd build
|
cd build
|
||||||
for binary in *; do
|
for binary in *; do
|
||||||
tar -czf ../release/${binary}_${VERSION}_linux_arm64.tar.gz ${binary}
|
tar -czf ../release/${binary}_${VERSION}_linux_arm64.tar.gz ${binary}
|
||||||
@@ -74,7 +74,7 @@ jobs:
|
|||||||
|
|
||||||
# Build for macOS AMD64 (Intel)
|
# Build for macOS AMD64 (Intel)
|
||||||
echo "Building for macOS AMD64..."
|
echo "Building for macOS AMD64..."
|
||||||
GOOS=darwin GOARCH=amd64 make
|
GOOS=darwin GOARCH=amd64 make obitools
|
||||||
cd build
|
cd build
|
||||||
for binary in *; do
|
for binary in *; do
|
||||||
tar -czf ../release/${binary}_${VERSION}_darwin_amd64.tar.gz ${binary}
|
tar -czf ../release/${binary}_${VERSION}_darwin_amd64.tar.gz ${binary}
|
||||||
@@ -85,7 +85,7 @@ jobs:
|
|||||||
|
|
||||||
# Build for macOS ARM64 (Apple Silicon)
|
# Build for macOS ARM64 (Apple Silicon)
|
||||||
echo "Building for macOS ARM64..."
|
echo "Building for macOS ARM64..."
|
||||||
GOOS=darwin GOARCH=arm64 make
|
GOOS=darwin GOARCH=arm64 make obitools
|
||||||
cd build
|
cd build
|
||||||
for binary in *; do
|
for binary in *; do
|
||||||
tar -czf ../release/${binary}_${VERSION}_darwin_arm64.tar.gz ${binary}
|
tar -czf ../release/${binary}_${VERSION}_darwin_arm64.tar.gz ${binary}
|
||||||
@@ -96,7 +96,7 @@ jobs:
|
|||||||
|
|
||||||
# Build for Windows AMD64
|
# Build for Windows AMD64
|
||||||
echo "Building for Windows AMD64..."
|
echo "Building for Windows AMD64..."
|
||||||
GOOS=windows GOARCH=amd64 make
|
GOOS=windows GOARCH=amd64 make obitools
|
||||||
cd build
|
cd build
|
||||||
for binary in *; do
|
for binary in *; do
|
||||||
# Windows binaries have .exe extension
|
# Windows binaries have .exe extension
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package obioptions
|
|||||||
// Version is automatically updated by the Makefile from version.txt
|
// Version is automatically updated by the Makefile from version.txt
|
||||||
// The patch number (third digit) is incremented on each push to the repository
|
// The patch number (third digit) is incremented on each push to the repository
|
||||||
|
|
||||||
var _Version = "Release 4.4.5"
|
var _Version = "Release 4.4.6"
|
||||||
|
|
||||||
// Version returns the version of the obitools package.
|
// Version returns the version of the obitools package.
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.4.5
|
4.4.6
|
||||||
Reference in New Issue
Block a user