├── .env ├── .github └── workflows │ ├── dockerhub.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── README.md ├── action.yml ├── config └── config.go ├── favicon.ico ├── go.mod ├── go.sum ├── main.go ├── main_test.go ├── operation ├── delete.go ├── incremental.go ├── upload.go └── website.go ├── testdata ├── group1 │ ├── empty.js │ ├── example.js │ ├── exclude.txt │ ├── exclude │ │ └── example.txt │ ├── favicon.ico │ ├── index.html │ ├── sub │ │ └── heart.gif │ └── 论雪莱《爱的哲学》中的根隐喻.pdf └── group2 │ ├── empty.js │ ├── example.js │ └── favicon.ico └── utils ├── action.go ├── env.go ├── error.go ├── ext.go ├── hash.go ├── match.go ├── match_test.go ├── timeCost.go └── walkDir.go /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/.github/workflows/dockerhub.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | dist 3 | .env.local 4 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/action.yml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/config/config.go -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/favicon.ico -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/main_test.go -------------------------------------------------------------------------------- /operation/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/operation/delete.go -------------------------------------------------------------------------------- /operation/incremental.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/operation/incremental.go -------------------------------------------------------------------------------- /operation/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/operation/upload.go -------------------------------------------------------------------------------- /operation/website.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/operation/website.go -------------------------------------------------------------------------------- /testdata/group1/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/group1/example.js: -------------------------------------------------------------------------------- 1 | console.log('group1') -------------------------------------------------------------------------------- /testdata/group1/exclude.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/group1/exclude/example.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/group1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/testdata/group1/favicon.ico -------------------------------------------------------------------------------- /testdata/group1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/testdata/group1/index.html -------------------------------------------------------------------------------- /testdata/group1/sub/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/testdata/group1/sub/heart.gif -------------------------------------------------------------------------------- /testdata/group1/论雪莱《爱的哲学》中的根隐喻.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/testdata/group1/论雪莱《爱的哲学》中的根隐喻.pdf -------------------------------------------------------------------------------- /testdata/group2/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/group2/example.js: -------------------------------------------------------------------------------- 1 | console.log('group2') -------------------------------------------------------------------------------- /testdata/group2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/testdata/group2/favicon.ico -------------------------------------------------------------------------------- /utils/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/action.go -------------------------------------------------------------------------------- /utils/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/env.go -------------------------------------------------------------------------------- /utils/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/error.go -------------------------------------------------------------------------------- /utils/ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/ext.go -------------------------------------------------------------------------------- /utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/hash.go -------------------------------------------------------------------------------- /utils/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/match.go -------------------------------------------------------------------------------- /utils/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/match_test.go -------------------------------------------------------------------------------- /utils/timeCost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/timeCost.go -------------------------------------------------------------------------------- /utils/walkDir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangbinwei/aliyun-oss-website-action/HEAD/utils/walkDir.go --------------------------------------------------------------------------------