Fix Docker CD workflow

pull/680/head
Tyrrrz 3 years ago
parent 345dc568c0
commit 7fa908ce34

@ -13,13 +13,17 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.3 uses: actions/checkout@v2.3.3
- name: Get release version
id: get-version
uses: dawidd6/action-get-tag@v1
- name: Login - name: Login
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }} run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
- name: Build - name: Build
run: docker build -t tyrrrz/discordchatexporter:${{ github.ref }} -t tyrrrz/discordchatexporter:stable . run: docker build -t tyrrrz/discordchatexporter:${{ steps.get-version.outputs.tag }} -t tyrrrz/discordchatexporter:stable .
- name: Deploy - name: Deploy
run: | run: |
docker push tyrrrz/discordchatexporter:${{ github.ref }} docker push tyrrrz/discordchatexporter:${{ steps.get-version.outputs.tag }}
docker push tyrrrz/discordchatexporter:stable docker push tyrrrz/discordchatexporter:stable

@ -13,6 +13,10 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.3.3 uses: actions/checkout@v2.3.3
- name: Get release version
id: get-version
uses: dawidd6/action-get-tag@v1
- name: Install .NET (v3.1) - name: Install .NET (v3.1)
uses: actions/setup-dotnet@v1.7.2 uses: actions/setup-dotnet@v1.7.2
with: with:
@ -76,6 +80,6 @@ jobs:
-Uri "${{ secrets.DISCORD_WEBHOOK }}" ` -Uri "${{ secrets.DISCORD_WEBHOOK }}" `
-Method "POST" ` -Method "POST" `
-ContentType "application/json; charset=UTF-8" ` -ContentType "application/json; charset=UTF-8" `
-Body '{"content":"**DiscordChatExporter** new version released!\nRef: `${{ github.ref }}`\nChangelog: <https://github.com/Tyrrrz/DiscordChatExporter/blob/${{ github.sha }}/Changelog.md>"}' ` -Body '{"content":"**DiscordChatExporter** new version released!\nVersion: `${{ steps.get-version.outputs.tag }}`\nChangelog: <https://github.com/Tyrrrz/DiscordChatExporter/blob/${{ steps.get-version.outputs.tag }}/Changelog.md>"}' `
-UseBasicParsing -UseBasicParsing
shell: pwsh shell: pwsh

Loading…
Cancel
Save