Skip to content

Commit

Permalink
[#82] Use a different plugin to build releases
Browse files Browse the repository at this point in the history
  • Loading branch information
juampynr committed Jul 5, 2022
1 parent 531a7d8 commit 857be58
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.29
- name: Build application
run: |
wget https://go.dev/dl/go1.18.3.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.3.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
go version
go build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
release_tag: ${{ env.GITHUB_SHA }}
automatic_release_tag: latest
title: "${{ $GITHUB_SHA }}"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
drupal9ci
publish-docker-image:
name: Publish Docker image
Expand Down

0 comments on commit 857be58

Please sign in to comment.