Skip to content

Commit

Permalink
print dir before upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeynep committed Feb 7, 2024
1 parent 176ca15 commit e0fb2e6
Showing 1 changed file with 6 additions and 46 deletions.
52 changes: 6 additions & 46 deletions .github/workflows/pointmark-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
Changes in this Release:
- First Change
- Second Change
- name: Print Directory
run: |
pwd
ls -la
- name: Upload Release Asset
id: upload-release-asset
Expand All @@ -66,49 +71,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: CoordinateExporter-0.1.0-SNAPSHOT-shaded.jar
asset_name: CoordinateExporter-0.1.0-SNAPSHOT-shaded.jar
asset_content_type: application/java-archive


# jobs:
# changelog:
# runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v2

# - name: Create release
# id: changelog
# uses: TriPSs/conventional-changelog-action@v3.7.1
# with:
# github-token: ${{ secrets.CHANGELOG_RELEASE }}

# - name: create release
# uses: actions/create-release@v1
# if: ${{ steps.changelog.outputs.skipped == 'false' }}
# env:
# GITHUB_TOKEN: ${{ secrets.CHANGELOG_RELEASE }}
# with:
# tag_name: ${{ steps.changelog.outputs.tag }}
# release_name: ${{ steps.changelog.outputs.tag }}
# body: ${{ steps.changelog.outputs.clean.changelog }}

# build:
# name: Create Release
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# body: |
# Changes in this Release
# - First Change
# - Second Change
# draft: false
# prerelease: false
asset_content_type: application/java-archive

0 comments on commit e0fb2e6

Please sign in to comment.