bingo/main.go
Seraphim R. Pardee 10259ca924
Some checks failed
build / build (push) Failing after 8m24s
test / test (push) Successful in 36s
Add Dockerfile and test/build action.
Fix indentation.

Use patched upload-artifact action.

Update git URL in module.

Divide workflows and give them order, add badges.

Apparently workflow_run isn't supported yet...

Update build to build container and push to registry.

Fix some docker registry things.

Use internal IPv4 for registry.

Missed a spot.

I think this order makes a difference.

force HTTP use in login

this?

Use GITHUB_TOKEN instead.

idk man i'm just gonna rebase this to clean the log

Use a PAT.

Copy files over correctly.

blah
2024-09-20 14:18:42 -04:00

24 lines
697 B
Go

/*
* Copyright (C) 2021-2024 Seraphim R. Pardee
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import "git.hl.srp.life/srp/bingo/cmd"
func main() {
cmd.Execute()
}