Skip to content

Commit

Permalink
Fix repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
flcdrg committed Jul 4, 2020
1 parent 016b1a6 commit 505cab2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 27 deletions.
33 changes: 12 additions & 21 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
GitAssemblyInformationalVersion: ${{ steps.gitversion.outputs.GitAssemblyInformationalVersion }}
GitBuildVersion: ${{ steps.gitversion.outputs.GitBuildVersion }}
GitBuildVersionSimple: ${{ steps.gitversion.outputs.GitBuildVersionSimple }}
output1: ${{ steps.step1.outputs.test }}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -37,7 +36,6 @@ jobs:
restore-keys: |
${{ runner.os }}-nuget-
# Runs a single command using the runners shell
- name: nuget restore
run: nuget restore -Verbosity quiet

Expand All @@ -54,8 +52,6 @@ jobs:
run: |
dir env:
echo "set-output name=GitAssemblyInformationalVersion::$($env:GitAssemblyInformationalVersion)"
echo "::set-output name=GitAssemblyInformationalVersion::$($env:GitAssemblyInformationalVersion)"
echo "::set-output name=GitBuildVersion::$($env:GitBuildVersion)"
echo "::set-output name=GitBuildVersionSimple::$($env:GitBuildVersionSimple)"
Expand All @@ -68,13 +64,10 @@ jobs:
# A file, directory or wildcard pattern that describes what to upload
path: 'vs2019/**/*.vsix'

- id: step1
run: echo "::set-output name=test::hello"

- name: Dump steps context
env:
STEPS_CONTEXT: ${{ toJson(steps) }}
run: echo "$STEPS_CONTEXT"
# - name: Dump steps context
# env:
# STEPS_CONTEXT: ${{ toJson(steps) }}
# run: echo "$STEPS_CONTEXT"

update_release_draft:
name: Update release draft
Expand All @@ -87,16 +80,14 @@ jobs:

if: github.ref == 'refs/heads/master' # Running this job only for master branch
steps:
- run: echo ${{needs.build.outputs.output1}}

- name: Dump job context
env:
JOB_CONTEXT: ${{ toJson(job) }}
run: echo "$JOB_CONTEXT"
- name: Dump needs context
env:
NEEDS_CONTEXT: ${{ toJson(needs) }}
run: echo "$NEEDS_CONTEXT"
# - name: Dump job context
# env:
# JOB_CONTEXT: ${{ toJson(job) }}
# run: echo "$JOB_CONTEXT"
# - name: Dump needs context
# env:
# NEEDS_CONTEXT: ${{ toJson(needs) }}
# run: echo "$NEEDS_CONTEXT"

- uses: release-drafter/release-drafter@v5
id: create_release
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,10 @@ jobs:
- name: Download Assets
uses: i3h/[email protected]
with:
#
owner: ${{ github.event.repository.owner.login }}
#
repo: ${{ github.event.repository.owner.login }}
#
repo: ${{ github.event.repository.name }}
tag: ${{ github.event.release.tag_name }}
#
file: Gardiner.VsShowMissing.VS2019.vsix
#
token: ${{ secrets.GITHUB_TOKEN }}

- run: dir -recurse
Expand Down

0 comments on commit 505cab2

Please sign in to comment.