Giter Site home page Giter Site logo

Comments (7)

danielledeleo avatar danielledeleo commented on May 20, 2024 1

goreleaser may be a good option as well! I believe it can also generate Homebrew recipes, if that is desired.

from gokey.

IgnorantSapient avatar IgnorantSapient commented on May 20, 2024

Or we could do something similar to what's been done here:

name: Releases
on:
  push:
    branches:
      - main

jobs:
  changelog:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2

      - name: conventional Changelog Action
        id: changelog
        uses: TriPSs/[email protected]
        with:
          github-token: ${{ secrets.CHANGELOG_RELEASE }}
          version-file: './package.json,./package-lock.json'

      - name: create release
        uses: actions/create-release@v1
        if: ${{ steps.changelog.outputs.skipped == 'false' }}
        env:
          GITHUB_TOKEN: ${{ secrets.CHANGELOG_RELEASE }}
        with:
          tag_name: ${{ steps.changelog.outputs.tag }}
          release_name: ${{ steps.changelog.outputs.tag }}
          body: ${{ steps.changelog.outputs.clean_changelog }}

But the downside to this is, this relies heavily on Commit message format to perform the releases and moving forward, commits should start with fix, feat,docs etc.... If we decide to go with this approach.

from gokey.

IgnorantSapient avatar IgnorantSapient commented on May 20, 2024

goreleaser looks promising, should we commit to it?

from gokey.

ignatk avatar ignatk commented on May 20, 2024

I'm a bit skeptical for third-party actions, but GitHub's create-release seems not maintained anymore. Is there something else we can do without relying on third-party actions?

from gokey.

IgnorantSapient avatar IgnorantSapient commented on May 20, 2024

We can write our own go program that would achieve it. But what is your idea workflow? What would it look like?

from gokey.

danielledeleo avatar danielledeleo commented on May 20, 2024

I'm a bit skeptical for third-party actions

Goreleaser can also be run manually (i.e. write your own Action to invoke it).

from gokey.

ignatk avatar ignatk commented on May 20, 2024

I've implemented a rudimentary release asset upload in #52

from gokey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.