-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use new Github Action to upload release assets (#4638)
Use alexellis/upload-assets instead of actions/upload-release-asset, which is no longer maintained. One advantage is that we can list all assets with a glob expression, so the workflow file is much less verbose. We also do a minor change to ./hack/generate-manifest-windows.sh, so that it can be run on macOS (one of the sed commands was GNU-specific, and there is no reason to use sed instead of kustomize). Fixes #4514 Signed-off-by: Antonin Bas <abas@vmware.com>
- Loading branch information
1 parent
68fea36
commit 9b860d8
Showing
13 changed files
with
37 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
overlays.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
resources: | ||
- agent.yml | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
configMapGenerator: | ||
- files: | ||
- conf/antrea-agent.conf | ||
- conf/antrea-cni.conflist | ||
name: antrea-windows-config | ||
- files: | ||
- conf/Run-AntreaAgent.ps1 | ||
name: antrea-agent-windows | ||
commonLabels: | ||
app: antrea | ||
namespace: kube-system | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- agent-containerd.yml | ||
- ../base | ||
namespace: kube-system | ||
commonLabels: | ||
app: antrea | ||
configMapGenerator: | ||
- files: | ||
- conf/Run-AntreaAgent-Containerd.ps1 | ||
- conf/Install-WindowsCNI-Containerd.ps1 | ||
name: antrea-agent-windows |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- agent.yml | ||
- ../base | ||
namespace: kube-system | ||
commonLabels: | ||
app: antrea | ||
configMapGenerator: | ||
- files: | ||
- conf/Run-AntreaAgent.ps1 | ||
name: antrea-agent-windows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.