feat(builds): generate and upload SHA256 sum file for release asset

This commit is contained in:
2021-05-08 21:14:27 +01:00
parent 6eaef25902
commit 036a575d09
3 changed files with 81 additions and 39 deletions

View File

@@ -2,7 +2,6 @@ package main
import (
"os"
"path/filepath"
"gopkg.in/yaml.v3"
)
@@ -25,7 +24,3 @@ func LoadPlan(filename string) (*Plan, error) {
return plan, err
}
func (s *Plan) ReleaseAsset() string {
return filepath.Base(s.Archive)
}