diff --git a/.github/workflows/release_docker.yaml b/.github/workflows/release_docker.yaml index c96327def..415eb7915 100644 --- a/.github/workflows/release_docker.yaml +++ b/.github/workflows/release_docker.yaml @@ -1,7 +1,7 @@ # This workflow builds and releases Docker images for Hawkbit applications to DockerHub. # It should be run from personal forks of the hawkbit repository with set . # personal DOCKERHUB_USERNAME var and DOCKERHUB_TOKEN secret. -name: Release Docker Images +name: Release - Docker Images on: # enable running the workflow manually diff --git a/.github/workflows/release_tag.yaml b/.github/workflows/release_tag.yaml index ea700846b..871cf55e3 100644 --- a/.github/workflows/release_tag.yaml +++ b/.github/workflows/release_tag.yaml @@ -1,4 +1,4 @@ -name: Release Tag +name: Release - Tag on: # enable running the workflow manually @@ -17,17 +17,6 @@ permissions: contents: write jobs: - audit: - # only on original eclipse-hawkbit/hawkbit repo - if: github.repository == 'eclipse-hawkbit/hawkbit' - runs-on: ubuntu-latest - - steps: - - name: "Release ${{ inputs.revision }}" - run: echo "Releasing ${{ inputs.revision }}" - - # tag with release version if not already tagged - # if already tagged - it will release from there tag: # only on original eclipse-hawkbit/hawkbit repo and when release fixed version if: github.repository == 'eclipse-hawkbit/hawkbit' && inputs.revision != '0-SNAPSHOT' diff --git a/.github/workflows/reusable_workflow_tag.yaml b/.github/workflows/reusable_workflow_tag.yaml index d27dddc4f..dc41131bf 100644 --- a/.github/workflows/reusable_workflow_tag.yaml +++ b/.github/workflows/reusable_workflow_tag.yaml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Tag release + - name: Create Tag ${{ inputs.tag_name }} run: | git config --local user.name "github-actions[bot]" git config --local user.email "github-actions[bot]@users.noreply.github.com" @@ -54,7 +54,7 @@ jobs: else echo "Tag ${TAG_NAME} already exists, do nothing." fi - fi` + fi env: TAG_NAME: ${{ inputs.tag_name }} TAG_MESSAGE: ${{ inputs.tag_message }} \ No newline at end of file