feat: auto-release abra with goreleaser when a tag is pushed #73
No reviewers
Labels
No Label
bug
build
ci/cd
contributing
design
documentation
duplicate
enhancement
help wanted
invalid
meta
question
security
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: coop-cloud/abra#73
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "knoflook/abra:main"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #71
This might change what Drone does when a commit is pushed, because it's now monitoring all branches. So maybe you can decide if it's okay. Most development happens on main so I thought it's not a big deal. Now, if you want to make a release, commit and push your changes and then run:
git tag [version i.e. v0.0.0]
git push origin [version]
and it should automatically build and release.
💯
@ -48,0 +48,4 @@
commands:
- git fetch --tags
depends_on:
- notify on failure
When a successful build runs, the
notify on failure
doesn't run because there was no failure.So,
fetch
andrelease
will be skipped then. I think you need to do:You're also missing this?
@ -48,0 +51,4 @@
- notify on failure
- name: release
image: golang
Can we pin to
1.16
to use the same as development? Using justgolang
here meanslatest
which might give us inconsistencies somewhere down the line.@ -37,8 +37,6 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo
cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
coopcloud.tech/tagcmp v0.0.0-20210825131340-4ef558bb7ada h1:MUjktvV/Oc/VCNzJuxMfm+0t9gKfbRrSLoA8sprtZ6U=
Should this be in this PR? Seems like an unrelated change.
0e7880e3f4
tobb8124030e