From f9cd3b72e07522acad64359b4bb3032569f3b8b9 Mon Sep 17 00:00:00 2001 From: Paul Lockaby Date: Sun, 28 Jul 2024 19:51:24 -0700 Subject: [PATCH] feat: test tag number in builds --- .github/workflows/release-build.yaml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml index e3b13ba..783a601 100644 --- a/.github/workflows/release-build.yaml +++ b/.github/workflows/release-build.yaml @@ -85,4 +85,4 @@ jobs: # IMAGE_NAME: ghcr.io/myaccount/myrepo - run: | - echo "Finished building and pushing containers." + echo "Finished building and pushing containers for version ${{ github.ref_name }}." diff --git a/README.md b/README.md index 98079af..39cdbed 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Create the above rule, the above deploy key, and tweak the jobs to your liking, Well, this should be what you do next: 1. Install pre-commit hooks: `make pre-commit` -2. Make changes and commit them using convential commit messages. +2. Make changes in branches only and commit them using convential commit messages. Make sure that the SUBJECT LINE of the pull request describes what the pull request does because that's the only thing that will appear in the changelog. 3. When you're ready to make a release, go to GitHub Actions tab and choose "Create Releases" and then click "Run workflow" and run the workflow against the `main` branch. You'll see, based on your commit messages, an update to CHANGELOG.md, a new tag, a release, and whatever you put into the `release-build.yaml` action. ## Installation