Skip to content

Commit

Permalink
FIX : 빌드 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minseonglove committed May 30, 2022
1 parent d85bb38 commit f86f2d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/bidderbidderCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,17 @@ jobs:
uses: actions/download-artifact@v3
with:
name: artifact
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.event.repository.updated_at }} | sed 's/:/./g'
release_name: ${{ github.event.repository.updated_at }} | sed 's/:/./g'
tag_name: ${{ steps.date.outputs.date }}
release_name: Release-${{ steps.date.outputs.date }}
- name: Upload Release APK
id: upload_release_asset
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit f86f2d1

Please sign in to comment.