diff --git a/.github/workflows/github-action-bleeding-edge.yml b/.github/workflows/github-action-bleeding-edge.yml index a2ebf45..d1a6edb 100644 --- a/.github/workflows/github-action-bleeding-edge.yml +++ b/.github/workflows/github-action-bleeding-edge.yml @@ -48,5 +48,3 @@ jobs: config-name: configs/draft-release.yml env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - uses: technote-space/release-github-actions@v6 \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1a5eb37..6d128bc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,14 +7,19 @@ permissions: contents: write jobs: - default: - uses: cloudposse/github-actions-workflows/.github/workflows/dockerized-app-release.yml@main - with: - organization: "${{ github.event.repository.owner.login }}" - repository: "${{ github.event.repository.name }}" - registry: registry.hub.docker.com - version: ${{ github.event.release.tag_name }} - secrets: - docker-login: "${{ secrets.DOCKERHUB_USERNAME }}" - docker-password: "${{ secrets.DOCKERHUB_PASSWORD }}" - github-private-actions-pat: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}" \ No newline at end of file + release: + name: Release GitHub Actions + runs-on: ubuntu-latest + steps: + - uses: technote-space/release-github-actions@v6 +# default: +# uses: cloudposse/github-actions-workflows/.github/workflows/dockerized-app-release.yml@main +# with: +# organization: "${{ github.event.repository.owner.login }}" +# repository: "${{ github.event.repository.name }}" +# registry: registry.hub.docker.com +# version: ${{ github.event.release.tag_name }} +# secrets: +# docker-login: "${{ secrets.DOCKERHUB_USERNAME }}" +# docker-password: "${{ secrets.DOCKERHUB_PASSWORD }}" +# github-private-actions-pat: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}" \ No newline at end of file