Skip to content

Commit 6d566ae

Browse files
committed
make actions binaries executable
1 parent 4c3c9ea commit 6d566ae

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ jobs:
102102
- name: Fetch build artifacts
103103
if: ${{ github.ref_type == 'tag' }}
104104
uses: actions/download-artifact@v3
105+
- name: Make binaries executable
106+
if: ${{ github.ref_type == 'tag' }}
107+
run: |
108+
chmod +x full/*
109+
chmod +x small/*
110+
chmod +x full-vista/*
111+
chmod +x small-vista/*
105112
- name: Publish release
106113
if: ${{ github.ref_type == 'tag' }}
107114
uses: softprops/action-gh-release@v1

Changes

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
Revision history for Perl-Dist-APPerl
2+
v0.0.4 2022-10-15
3+
Make Actions release binaries executable
4+
25
v0.0.3 2022-10-14
36
Bumped cosmopolitan versions. Add category to apperlm list. Add
47
leading '-' support to config parsing to remove items from an

lib/Perl/Dist/APPerl.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Perl::Dist::APPerl;
22
# Copyright (c) 2022 Gavin Hayes, see LICENSE in the root of the project
3-
use version; our $VERSION = version->declare("v0.0.3");
3+
use version; our $VERSION = version->declare("v0.0.4");
44
use strict;
55
use warnings;
66
use JSON::PP qw(decode_json);

0 commit comments

Comments
 (0)