Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 54 additions & 56 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,56 +1,54 @@
# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib
.idea/*

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

# dep related files and folders
/vendor*

# ignore logfiles (/* so the .gitkeep override works)
/logs/*

# ignore configuration file
/config.yml

# Ignore Vagrant stuff
/.vagrant

# Builds by gox
/build

# Go Coverage tool
/coverage.out

# The built executable
wings
wings.exe

# IDE/Editor files (VS Code)
/.vscode

# test files
test_*/

# Keep all gitkeep files (This needs to stay at the bottom)
!.gitkeep
debug
.DS_Store
*.pprof
*.pdf

Dockerfile
CHANGELOG.md
Makefile
README.md
wings-api.paw
# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib
.idea/*

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

# dep related files and folders
/vendor*

# ignore logfiles (/* so the .gitkeep override works)
/logs/*

# ignore configuration file
/config.yml

# Ignore Vagrant stuff
/.vagrant

# Builds by gox
/build

# Go Coverage tool
/coverage.out

# The built executable
wings
wings.exe

# IDE/Editor files (VS Code)
/.vscode

# test files
test_*/

# Keep all gitkeep files (This needs to stay at the bottom)
!.gitkeep
debug
.DS_Store
*.pprof
*.pdf

Dockerfile
Makefile
README.md
9 changes: 1 addition & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,11 @@ jobs:
GOARCH=arm64 go build -o dist/wings_linux_arm64 -v -trimpath -ldflags="-s -w -X github.com/pelican-dev/wings/system.Version=${REF:11}" github.com/pelican-dev/wings
chmod 755 dist/wings_linux_arm64

- name: Extract changelog
env:
REF: ${{ github.ref }}
run: |
sed -n "/^## ${REF:10}/,/^## /{/^## /b;p}" CHANGELOG.md > ./RELEASE_CHANGELOG

- name: Create checksum and add to changelog
- name: Create checksum
run: |
SUM=`cd dist && sha256sum wings_linux_amd64`
SUM2=`cd dist && sha256sum wings_linux_arm64`
echo -e "\n#### SHA256 Checksum\n\`\`\`\n$SUM\n$SUM2\n\`\`\`\n" >> ./RELEASE_CHANGELOG
echo -e "$SUM\n$SUM2" > checksums.txt

- name: Create release branch
Expand All @@ -67,7 +61,6 @@ jobs:
with:
draft: true
prerelease: ${{ contains(github.ref, 'rc') || contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
body_path: ./RELEASE_CHANGELOG

- name: Upload amd64 binary
uses: actions/upload-release-asset@v1
Expand Down
Loading