Skip to content

Commit

Permalink
fix: artifacts path
Browse files Browse the repository at this point in the history
  • Loading branch information
GuihVicentini committed Dec 11, 2023
1 parent ce3a04f commit c29936b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 63 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/build-native.yml

This file was deleted.

37 changes: 5 additions & 32 deletions .github/workflows/main-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,43 +47,16 @@ jobs:

- uses: actions/download-artifact@v3
with:
path: cli-utils/bin
path: bin

- name: Display structure of downloaded files
run: ls -al
working-directory: cli-utils/bin/cli-utils-ubuntu-latest
run: ls -alR
working-directory: bin/cli-utils-ubuntu-latest

- name: Publish Release
uses: ncipollo/release-action@v1
with:
artifacts: "cli-utils/bin/cli-utils-*/*"
artifacts: "bin/cli-utils-*/**/build/native/nativeCompile/*"
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}

# - name: Bump version and push tag
# uses: anothrNick/[email protected] # Don't use @master or @v1 unless you're happy to test the latest version
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token
# WITH_V: true
# DEFAULT_BUMP: patch

# publish:
# needs: [tag]
# name: publish release
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - name: Checkout
# uses: actions/checkout@v3
#
#

# - name: Publish release
# uses: ghalactic/github-release-from-tag@v5
# with:
# generateReleaseNotes: "true"
# assets: |
# - path: cli-utils/bin/*
# optional: true
body: ${{ steps.tag_version.outputs.changelog }}
1 change: 0 additions & 1 deletion dupliwise/settings.gradle.kts

This file was deleted.

2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = "cli-utils"
include("dupliwise")
include("dupliwise")

0 comments on commit c29936b

Please sign in to comment.